NOTE Before starting this assignment please remember to clear your environment, you can do that by running the following code chunk
# Remove all environmental variables
rm(list = ls(all=T))
Getting the data & pre-processing it into a suitable format
Exploring the transaction data
Applying Apriori algoirhtm on transaction data
Getting frequent itemsets and rules
Inspecting and summarizing rules
Picking rules based on support and confidence
Picking rules with desired RHS or LHS / rule length, by subsetting the rules
Plotting and visualizing the itemsets and rules
Association rule mining can only use items and does not work with continuous variables
Apriori function of Arules package works with Formal tansactions class, and hence data should be formatted properly before reading it in as transaction data
# Import arules
library(arules)
## Warning: package 'arules' was built under R version 3.4.1
## Loading required package: Matrix
##
## Attaching package: 'arules'
## The following objects are masked from 'package:base':
##
## abbreviate, write
# Set the current working directory
setwd("G:/ARM")
# Read the data as transactional data
read.transactions("Transactions.csv",rm.duplicates = F,format = "single",sep = ",",cols = c(1,2))->tr
tr
## transactions in sparse format with
## 10 transactions (rows) and
## 6 items (columns)
# inspect/explore transactions
inspect(tr)
## items transactionID
## [1] {Choclates,Marker,Pencil} 1001
## [2] {Choclates,Pencil} 1002
## [3] {Coke,Eraser,Pencil} 1003
## [4] {Choclates,Cookies,Pencil} 1004
## [5] {Marker} 1005
## [6] {Marker,Pencil} 1006
## [7] {Choclates,Pencil} 1007
## [8] {Choclates,Cookies,Pencil} 1008
## [9] {Marker,Pencil} 1009
## [10] {Coke,Marker} 1010
tr
## transactions in sparse format with
## 10 transactions (rows) and
## 6 items (columns)
image(tr)
itemFrequencyPlot(tr)
rules<-apriori(tr,parameter = list(sup=0.2,conf=0.6,target="rules"))
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.6 0.1 1 none FALSE TRUE 5 0.2 1
## maxlen target ext
## 10 rules FALSE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 2
##
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[6 item(s), 10 transaction(s)] done [0.00s].
## sorting and recoding items ... [5 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 done [0.00s].
## writing ... [8 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
summary(rules)
## set of 8 rules
##
## rule length distribution (lhs + rhs):sizes
## 1 2 3
## 1 5 2
##
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 1.000 2.000 2.000 2.125 2.250 3.000
##
## summary of quality measures:
## support confidence lift
## Min. :0.2000 Min. :0.6000 Min. :0.750
## 1st Qu.:0.2000 1st Qu.:0.7562 1st Qu.:1.188
## Median :0.2500 Median :1.0000 Median :1.250
## Mean :0.3625 Mean :0.8781 Mean :1.344
## 3rd Qu.:0.5000 3rd Qu.:1.0000 3rd Qu.:1.438
## Max. :0.8000 Max. :1.0000 Max. :2.000
##
## mining info:
## data ntransactions support confidence
## tr 10 0.2 0.6
inspect(rules)
## lhs rhs support confidence lift
## [1] {} => {Pencil} 0.8 0.800 1.00
## [2] {Cookies} => {Choclates} 0.2 1.000 2.00
## [3] {Cookies} => {Pencil} 0.2 1.000 1.25
## [4] {Marker} => {Pencil} 0.3 0.600 0.75
## [5] {Choclates} => {Pencil} 0.5 1.000 1.25
## [6] {Pencil} => {Choclates} 0.5 0.625 1.25
## [7] {Choclates,Cookies} => {Pencil} 0.2 1.000 1.25
## [8] {Cookies,Pencil} => {Choclates} 0.2 1.000 2.00
library(arulesViz)
## Warning: package 'arulesViz' was built under R version 3.4.1
## Loading required package: grid
## Warning: Installed Rcpp (0.12.12) different from Rcpp used to build dplyr (0.12.11).
## Please reinstall dplyr to avoid random crashes or undefined behavior.
plot(rules)
top_rules = sort(rules,by=c("confidence","support"))
head(as(top_rules, "data.frame"), n=5)
## rules support confidence lift
## 5 {Choclates} => {Pencil} 0.5 1 1.25
## 2 {Cookies} => {Choclates} 0.2 1 2.00
## 3 {Cookies} => {Pencil} 0.2 1 1.25
## 7 {Choclates,Cookies} => {Pencil} 0.2 1 1.25
## 8 {Cookies,Pencil} => {Choclates} 0.2 1 2.00
rules.itemfilter1 <- as(subset(rules, subset = rhs %in%
"Choclates"),
"data.frame")
rules.itemfilter1
## rules support confidence lift
## 2 {Cookies} => {Choclates} 0.2 1.000 2.00
## 6 {Pencil} => {Choclates} 0.5 0.625 1.25
## 8 {Cookies,Pencil} => {Choclates} 0.2 1.000 2.00
# Picking rules based on RHs = Pencil
rules.itemfilter2 <- as(subset(rules,subset=rhs %in% "Pencil"),"data.frame")
rules.itemfilter2
## rules support confidence lift
## 1 {} => {Pencil} 0.8 0.8 1.00
## 3 {Cookies} => {Pencil} 0.2 1.0 1.25
## 4 {Marker} => {Pencil} 0.3 0.6 0.75
## 5 {Choclates} => {Pencil} 0.5 1.0 1.25
## 7 {Choclates,Cookies} => {Pencil} 0.2 1.0 1.25
rules_Lift <- as(subset(rules, subset = rhs %in% "Pencil" & lift > 1.01),
"data.frame")
rules_Lift
## rules support confidence lift
## 3 {Cookies} => {Pencil} 0.2 1 1.25
## 5 {Choclates} => {Pencil} 0.5 1 1.25
## 7 {Choclates,Cookies} => {Pencil} 0.2 1 1.25
titanic_data <- read.csv(file = "titanic_data.csv")
head(titanic_data)
## Class Sex Age Survived
## 1 3rd Male Child No
## 2 3rd Male Child No
## 3 3rd Male Child No
## 4 3rd Male Child No
## 5 3rd Male Child No
## 6 3rd Male Child No
str(titanic_data)
## 'data.frame': 2201 obs. of 4 variables:
## $ Class : Factor w/ 4 levels "1st","2nd","3rd",..: 3 3 3 3 3 3 3 3 3 3 ...
## $ Sex : Factor w/ 2 levels "Female","Male": 2 2 2 2 2 2 2 2 2 2 ...
## $ Age : Factor w/ 2 levels "Adult","Child": 2 2 2 2 2 2 2 2 2 2 ...
## $ Survived: Factor w/ 2 levels "No","Yes": 1 1 1 1 1 1 1 1 1 1 ...
rules <- apriori(titanic_data)
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.8 0.1 1 none FALSE TRUE 5 0.1 1
## maxlen target ext
## 10 rules FALSE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 220
##
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[10 item(s), 2201 transaction(s)] done [0.00s].
## sorting and recoding items ... [9 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 done [0.00s].
## writing ... [27 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
inspect(rules)
## lhs rhs support
## [1] {} => {Age=Adult} 0.9504771
## [2] {Class=2nd} => {Age=Adult} 0.1185825
## [3] {Class=1st} => {Age=Adult} 0.1449341
## [4] {Sex=Female} => {Age=Adult} 0.1930940
## [5] {Class=3rd} => {Age=Adult} 0.2848705
## [6] {Survived=Yes} => {Age=Adult} 0.2971377
## [7] {Class=Crew} => {Sex=Male} 0.3916402
## [8] {Class=Crew} => {Age=Adult} 0.4020900
## [9] {Survived=No} => {Sex=Male} 0.6197183
## [10] {Survived=No} => {Age=Adult} 0.6533394
## [11] {Sex=Male} => {Age=Adult} 0.7573830
## [12] {Sex=Female,Survived=Yes} => {Age=Adult} 0.1435711
## [13] {Class=3rd,Sex=Male} => {Survived=No} 0.1917310
## [14] {Class=3rd,Survived=No} => {Age=Adult} 0.2162653
## [15] {Class=3rd,Sex=Male} => {Age=Adult} 0.2099046
## [16] {Sex=Male,Survived=Yes} => {Age=Adult} 0.1535666
## [17] {Class=Crew,Survived=No} => {Sex=Male} 0.3044071
## [18] {Class=Crew,Survived=No} => {Age=Adult} 0.3057701
## [19] {Class=Crew,Sex=Male} => {Age=Adult} 0.3916402
## [20] {Class=Crew,Age=Adult} => {Sex=Male} 0.3916402
## [21] {Sex=Male,Survived=No} => {Age=Adult} 0.6038164
## [22] {Age=Adult,Survived=No} => {Sex=Male} 0.6038164
## [23] {Class=3rd,Sex=Male,Survived=No} => {Age=Adult} 0.1758292
## [24] {Class=3rd,Age=Adult,Survived=No} => {Sex=Male} 0.1758292
## [25] {Class=3rd,Sex=Male,Age=Adult} => {Survived=No} 0.1758292
## [26] {Class=Crew,Sex=Male,Survived=No} => {Age=Adult} 0.3044071
## [27] {Class=Crew,Age=Adult,Survived=No} => {Sex=Male} 0.3044071
## confidence lift
## [1] 0.9504771 1.0000000
## [2] 0.9157895 0.9635051
## [3] 0.9815385 1.0326798
## [4] 0.9042553 0.9513700
## [5] 0.8881020 0.9343750
## [6] 0.9198312 0.9677574
## [7] 0.9740113 1.2384742
## [8] 1.0000000 1.0521033
## [9] 0.9154362 1.1639949
## [10] 0.9651007 1.0153856
## [11] 0.9630272 1.0132040
## [12] 0.9186047 0.9664669
## [13] 0.8274510 1.2222950
## [14] 0.9015152 0.9484870
## [15] 0.9058824 0.9530818
## [16] 0.9209809 0.9689670
## [17] 0.9955423 1.2658514
## [18] 1.0000000 1.0521033
## [19] 1.0000000 1.0521033
## [20] 0.9740113 1.2384742
## [21] 0.9743402 1.0251065
## [22] 0.9242003 1.1751385
## [23] 0.9170616 0.9648435
## [24] 0.8130252 1.0337773
## [25] 0.8376623 1.2373791
## [26] 1.0000000 1.0521033
## [27] 0.9955423 1.2658514
rules <- apriori(titanic_data,parameter = list(minlen=2, supp=0.005, conf=0.8),
appearance = list(rhs=c("Survived=No", "Survived=Yes"), default="lhs"))
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.8 0.1 1 none FALSE TRUE 5 0.005 2
## maxlen target ext
## 10 rules FALSE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 11
##
## set item appearances ...[2 item(s)] done [0.00s].
## set transactions ...[10 item(s), 2201 transaction(s)] done [0.01s].
## sorting and recoding items ... [10 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 done [0.00s].
## writing ... [12 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
inspect(rules)
## lhs rhs support
## [1] {Class=2nd,Age=Child} => {Survived=Yes} 0.010904134
## [2] {Class=2nd,Sex=Female} => {Survived=Yes} 0.042253521
## [3] {Class=2nd,Sex=Male} => {Survived=No} 0.069968196
## [4] {Class=1st,Sex=Female} => {Survived=Yes} 0.064061790
## [5] {Class=Crew,Sex=Female} => {Survived=Yes} 0.009086779
## [6] {Class=3rd,Sex=Male} => {Survived=No} 0.191731031
## [7] {Class=2nd,Sex=Female,Age=Child} => {Survived=Yes} 0.005906406
## [8] {Class=2nd,Sex=Female,Age=Adult} => {Survived=Yes} 0.036347115
## [9] {Class=2nd,Sex=Male,Age=Adult} => {Survived=No} 0.069968196
## [10] {Class=1st,Sex=Female,Age=Adult} => {Survived=Yes} 0.063607451
## [11] {Class=Crew,Sex=Female,Age=Adult} => {Survived=Yes} 0.009086779
## [12] {Class=3rd,Sex=Male,Age=Adult} => {Survived=No} 0.175829169
## confidence lift
## [1] 1.0000000 3.095640
## [2] 0.8773585 2.715986
## [3] 0.8603352 1.270871
## [4] 0.9724138 3.010243
## [5] 0.8695652 2.691861
## [6] 0.8274510 1.222295
## [7] 1.0000000 3.095640
## [8] 0.8602151 2.662916
## [9] 0.9166667 1.354083
## [10] 0.9722222 3.009650
## [11] 0.8695652 2.691861
## [12] 0.8376623 1.237379
rules.sorted <- sort(rules, by="lift")
inspect(rules.sorted)
## lhs rhs support
## [1] {Class=2nd,Age=Child} => {Survived=Yes} 0.010904134
## [2] {Class=2nd,Sex=Female,Age=Child} => {Survived=Yes} 0.005906406
## [3] {Class=1st,Sex=Female} => {Survived=Yes} 0.064061790
## [4] {Class=1st,Sex=Female,Age=Adult} => {Survived=Yes} 0.063607451
## [5] {Class=2nd,Sex=Female} => {Survived=Yes} 0.042253521
## [6] {Class=Crew,Sex=Female} => {Survived=Yes} 0.009086779
## [7] {Class=Crew,Sex=Female,Age=Adult} => {Survived=Yes} 0.009086779
## [8] {Class=2nd,Sex=Female,Age=Adult} => {Survived=Yes} 0.036347115
## [9] {Class=2nd,Sex=Male,Age=Adult} => {Survived=No} 0.069968196
## [10] {Class=2nd,Sex=Male} => {Survived=No} 0.069968196
## [11] {Class=3rd,Sex=Male,Age=Adult} => {Survived=No} 0.175829169
## [12] {Class=3rd,Sex=Male} => {Survived=No} 0.191731031
## confidence lift
## [1] 1.0000000 3.095640
## [2] 1.0000000 3.095640
## [3] 0.9724138 3.010243
## [4] 0.9722222 3.009650
## [5] 0.8773585 2.715986
## [6] 0.8695652 2.691861
## [7] 0.8695652 2.691861
## [8] 0.8602151 2.662916
## [9] 0.9166667 1.354083
## [10] 0.8603352 1.270871
## [11] 0.8376623 1.237379
## [12] 0.8274510 1.222295
subset.matrix <- is.subset(rules.sorted, rules.sorted,sparse = FALSE)
subset.matrix[lower.tri(subset.matrix, diag=T)] <- NA
redundant <- colSums(subset.matrix, na.rm=T) >= 1
which(redundant)
## {Class=2nd,Sex=Female,Age=Child,Survived=Yes}
## 2
## {Class=1st,Sex=Female,Age=Adult,Survived=Yes}
## 4
## {Class=Crew,Sex=Female,Age=Adult,Survived=Yes}
## 7
## {Class=2nd,Sex=Female,Age=Adult,Survived=Yes}
## 8
rules.pruned <- rules.sorted[!redundant]
inspect(rules.pruned)
## lhs rhs support
## [1] {Class=2nd,Age=Child} => {Survived=Yes} 0.010904134
## [2] {Class=1st,Sex=Female} => {Survived=Yes} 0.064061790
## [3] {Class=2nd,Sex=Female} => {Survived=Yes} 0.042253521
## [4] {Class=Crew,Sex=Female} => {Survived=Yes} 0.009086779
## [5] {Class=2nd,Sex=Male,Age=Adult} => {Survived=No} 0.069968196
## [6] {Class=2nd,Sex=Male} => {Survived=No} 0.069968196
## [7] {Class=3rd,Sex=Male,Age=Adult} => {Survived=No} 0.175829169
## [8] {Class=3rd,Sex=Male} => {Survived=No} 0.191731031
## confidence lift
## [1] 1.0000000 3.095640
## [2] 0.9724138 3.010243
## [3] 0.8773585 2.715986
## [4] 0.8695652 2.691861
## [5] 0.9166667 1.354083
## [6] 0.8603352 1.270871
## [7] 0.8376623 1.237379
## [8] 0.8274510 1.222295
library(arulesViz)
plot(rules.pruned)
read.csv("FlightDelays.csv",header = T,sep = ",")->fd
fd
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather DAY_WEEK Flight.Status
## 1 600 MQ JFK DCA 0 4 0
## 2 600 MQ JFK DCA 0 5 0
## 3 600 MQ JFK DCA 0 6 0
## 4 600 MQ JFK DCA 0 7 0
## 5 600 MQ JFK DCA 0 1 0
## 6 600 MQ JFK DCA 0 2 0
## 7 600 MQ JFK DCA 0 3 0
## 8 600 MQ JFK DCA 0 4 0
## 9 600 MQ JFK DCA 0 5 0
## 10 600 MQ JFK DCA 0 6 1
## 11 600 MQ JFK DCA 0 7 0
## 12 600 MQ JFK DCA 0 1 0
## 13 600 MQ JFK DCA 0 2 0
## 14 600 MQ JFK DCA 0 3 0
## 15 600 MQ JFK DCA 0 4 0
## 16 600 MQ JFK DCA 0 5 0
## 17 600 MQ JFK DCA 0 6 0
## 18 600 MQ JFK DCA 0 7 1
## 19 600 MQ JFK DCA 0 1 0
## 20 600 MQ JFK DCA 0 2 0
## 21 600 MQ JFK DCA 0 3 0
## 22 600 MQ JFK DCA 0 4 0
## 23 600 MQ JFK DCA 0 5 0
## 24 600 MQ JFK DCA 0 6 0
## 25 600 MQ JFK DCA 0 4 0
## 26 600 MQ JFK DCA 0 6 0
## 27 630 DH EWR IAD 0 5 0
## 28 630 DH EWR IAD 0 6 0
## 29 630 DL LGA DCA 0 1 0
## 30 630 US LGA DCA 0 1 1
## 31 630 DH EWR IAD 0 1 0
## 32 630 DL LGA DCA 0 2 0
## 33 630 US LGA DCA 0 2 0
## 34 630 DH EWR IAD 0 2 0
## 35 630 DL LGA DCA 0 3 0
## 36 630 US LGA DCA 0 3 0
## 37 630 DH EWR IAD 0 3 0
## 38 630 DL LGA DCA 0 4 0
## 39 630 US LGA DCA 0 4 0
## 40 630 DH EWR IAD 0 4 0
## 41 630 DL LGA DCA 0 5 0
## 42 630 US LGA DCA 0 5 0
## 43 630 DH EWR IAD 0 5 0
## 44 630 DL LGA DCA 0 1 0
## 45 630 US LGA DCA 0 1 0
## 46 630 DH EWR IAD 0 1 0
## 47 630 DL LGA DCA 0 2 0
## 48 630 US LGA DCA 0 2 0
## 49 630 DH EWR IAD 0 2 0
## 50 630 DL LGA DCA 0 3 0
## 51 630 US LGA DCA 0 3 0
## 52 630 DH EWR IAD 0 3 0
## 53 630 DL LGA DCA 0 4 0
## 54 630 US LGA DCA 0 4 1
## 55 630 DH EWR IAD 0 4 0
## 56 630 DL LGA DCA 0 5 0
## 57 630 US LGA DCA 0 5 0
## 58 630 DH EWR IAD 0 5 1
## 59 630 US LGA DCA 0 1 0
## 60 630 DH EWR IAD 0 1 0
## 61 630 DL LGA DCA 0 2 0
## 62 630 US LGA DCA 0 2 0
## 63 630 DH EWR IAD 0 2 0
## 64 630 DL LGA DCA 0 3 0
## 65 630 US LGA DCA 0 3 0
## 66 630 DH EWR IAD 0 3 0
## 67 630 DL LGA DCA 0 4 0
## 68 630 US LGA DCA 0 4 0
## 69 630 DH EWR IAD 0 4 0
## 70 630 DL LGA DCA 0 5 0
## 71 630 US LGA DCA 0 5 0
## 72 630 DH EWR IAD 0 5 0
## 73 630 US LGA DCA 0 1 1
## 74 630 DH EWR IAD 0 1 0
## 75 630 US LGA DCA 0 2 0
## 76 630 US LGA DCA 0 3 0
## 77 630 DH EWR IAD 0 3 0
## 78 630 DL LGA DCA 0 4 0
## 79 630 US LGA DCA 0 4 0
## 80 630 DH EWR IAD 0 4 0
## 81 630 DL LGA DCA 0 5 0
## 82 630 US LGA DCA 0 5 0
## 83 630 DH EWR IAD 0 5 0
## 84 640 DH LGA IAD 0 5 0
## 85 640 DH LGA IAD 0 6 0
## 86 640 DH LGA IAD 0 7 0
## 87 640 DH LGA IAD 0 1 1
## 88 640 DH LGA IAD 0 2 0
## 89 640 DH LGA IAD 0 3 0
## 90 640 DH LGA IAD 0 4 0
## 91 640 DH LGA IAD 0 5 1
## 92 640 DH LGA IAD 0 1 1
## 93 640 DH LGA IAD 0 2 1
## 94 640 DH LGA IAD 0 3 0
## 95 640 DH LGA IAD 0 5 0
## 96 640 DH LGA IAD 0 1 1
## 97 640 DH LGA IAD 0 2 0
## 98 640 DH LGA IAD 0 3 1
## 99 640 DH LGA IAD 0 4 0
## 100 640 DH LGA IAD 0 5 0
## 101 640 DH LGA IAD 0 1 1
## 102 640 DH LGA IAD 1 2 1
## 103 640 DH LGA IAD 0 3 0
## 104 640 DH LGA IAD 0 4 1
## 105 640 DH LGA IAD 0 5 0
## 106 645 RU EWR DCA 0 2 0
## 107 645 RU EWR DCA 0 3 0
## 108 645 RU EWR DCA 0 4 1
## 109 645 RU EWR DCA 0 5 0
## 110 645 RU EWR DCA 0 6 0
## 111 645 RU EWR DCA 0 1 0
## 112 645 RU EWR DCA 0 2 0
## 113 645 RU EWR DCA 0 3 0
## 114 645 RU EWR DCA 0 4 0
## 115 645 RU EWR DCA 0 5 0
## 116 645 RU EWR DCA 0 6 0
## 117 645 RU EWR DCA 0 1 0
## 118 645 RU EWR DCA 0 2 0
## 119 645 RU EWR DCA 0 3 0
## 120 645 RU EWR DCA 0 4 0
## 121 645 RU EWR DCA 0 5 0
## 122 645 RU EWR DCA 0 6 0
## 123 645 RU EWR DCA 0 2 0
## 124 645 RU EWR DCA 0 4 0
## 125 645 RU EWR DCA 0 5 0
## 126 645 RU EWR DCA 0 6 0
## 127 700 RU EWR BWI 0 4 0
## 128 700 US LGA DCA 0 5 0
## 129 700 RU EWR BWI 0 5 0
## 130 700 RU EWR IAD 0 5 0
## 131 700 RU EWR DCA 0 5 0
## 132 700 US LGA DCA 0 6 0
## 133 700 RU EWR BWI 0 6 0
## 134 700 RU EWR IAD 0 6 0
## 135 700 RU EWR DCA 0 6 0
## 136 700 MQ LGA DCA 0 1 0
## 137 700 US LGA DCA 0 1 0
## 138 700 RU EWR BWI 0 1 1
## 139 700 RU EWR DCA 0 1 0
## 140 700 RU EWR IAD 0 1 0
## 141 700 MQ LGA DCA 0 2 0
## 142 700 US LGA DCA 0 2 0
## 143 700 RU EWR BWI 0 2 0
## 144 700 RU EWR IAD 0 2 0
## 145 700 MQ LGA DCA 0 3 0
## 146 700 US LGA DCA 0 3 0
## 147 700 RU EWR BWI 0 3 0
## 148 700 RU EWR IAD 0 3 1
## 149 700 MQ LGA DCA 0 4 0
## 150 700 US LGA DCA 0 4 0
## 151 700 RU EWR BWI 0 4 0
## 152 700 RU EWR IAD 0 4 0
## 153 700 US LGA DCA 0 5 0
## 154 700 RU EWR BWI 0 5 0
## 155 700 RU EWR IAD 0 5 1
## 156 700 US LGA DCA 0 6 0
## 157 700 RU EWR BWI 0 6 0
## 158 700 RU EWR IAD 0 6 0
## 159 700 MQ LGA DCA 0 1 1
## 160 700 US LGA DCA 0 1 1
## 161 700 RU EWR BWI 0 1 0
## 162 700 RU EWR IAD 0 1 0
## 163 700 MQ LGA DCA 0 2 0
## 164 700 US LGA DCA 0 2 0
## 165 700 RU EWR BWI 0 2 0
## 166 700 RU EWR IAD 0 2 0
## 167 700 MQ LGA DCA 0 3 1
## 168 700 US LGA DCA 0 3 0
## 169 700 RU EWR BWI 0 3 0
## 170 700 RU EWR IAD 0 3 0
## 171 700 RU EWR IAD 0 4 1
## 172 700 US LGA DCA 0 5 0
## 173 700 RU EWR BWI 0 5 0
## 174 700 RU EWR IAD 0 5 0
## 175 700 US LGA DCA 0 6 0
## 176 700 RU EWR BWI 0 6 0
## 177 700 RU EWR IAD 0 6 0
## 178 700 MQ LGA DCA 0 1 1
## 179 700 US LGA DCA 0 1 0
## 180 700 RU EWR BWI 0 1 0
## 181 700 RU EWR IAD 0 1 0
## 182 700 MQ LGA DCA 0 2 0
## 183 700 US LGA DCA 0 2 0
## 184 700 RU EWR BWI 0 2 0
## 185 700 RU EWR IAD 0 2 1
## 186 700 MQ LGA DCA 0 3 0
## 187 700 US LGA DCA 0 3 0
## 188 700 RU EWR BWI 0 3 0
## 189 700 RU EWR IAD 0 3 0
## 190 700 MQ LGA DCA 0 4 0
## 191 700 US LGA DCA 0 4 0
## 192 700 RU EWR BWI 0 4 0
## 193 700 RU EWR IAD 0 4 0
## 194 700 MQ LGA DCA 0 5 0
## 195 700 US LGA DCA 0 5 0
## 196 700 RU EWR BWI 0 5 0
## 197 700 RU EWR IAD 0 5 0
## 198 700 US LGA DCA 0 6 0
## 199 700 RU EWR BWI 0 6 1
## 200 700 RU EWR IAD 0 6 1
## 201 700 US LGA DCA 0 1 1
## 202 700 MQ LGA DCA 0 2 1
## 203 700 US LGA DCA 0 2 0
## 204 700 RU EWR BWI 0 2 1
## 205 700 RU EWR IAD 1 2 1
## 206 700 US LGA DCA 0 3 0
## 207 700 RU EWR IAD 0 3 0
## 208 700 MQ LGA DCA 0 4 1
## 209 700 US LGA DCA 0 4 1
## 210 700 RU EWR BWI 0 4 0
## 211 700 RU EWR IAD 0 4 0
## 212 700 MQ LGA DCA 0 5 0
## 213 700 US LGA DCA 0 5 0
## 214 700 RU EWR BWI 0 5 0
## 215 700 RU EWR IAD 0 5 1
## 216 700 US LGA DCA 0 6 0
## 217 700 RU EWR BWI 0 6 0
## 218 700 RU EWR IAD 0 6 0
## 219 730 MQ JFK DCA 0 7 0
## 220 730 DL LGA DCA 0 1 0
## 221 730 DL LGA DCA 0 2 0
## 222 730 DL LGA DCA 0 4 0
## 223 730 DL LGA DCA 0 5 1
## 224 730 DL LGA DCA 0 6 0
## 225 730 DL LGA DCA 0 1 0
## 226 730 DL LGA DCA 0 2 0
## 227 730 DL LGA DCA 0 3 0
## 228 730 DL LGA DCA 0 4 1
## 229 730 DL LGA DCA 0 5 0
## 230 730 DL LGA DCA 0 6 0
## 231 730 DL LGA DCA 0 1 0
## 232 730 DL LGA DCA 0 2 0
## 233 730 DL LGA DCA 0 3 0
## 234 730 DL LGA DCA 0 4 0
## 235 730 DL LGA DCA 0 5 0
## 236 730 DL LGA DCA 0 6 0
## 237 730 DL LGA DCA 1 1 1
## 238 730 DL LGA DCA 0 2 0
## 239 730 DL LGA DCA 0 3 0
## 240 730 DL LGA DCA 0 4 0
## 241 730 DL LGA DCA 0 5 0
## 242 730 DL LGA DCA 0 6 0
## 243 735 CO EWR DCA 0 2 0
## 244 735 CO EWR DCA 0 3 0
## 245 735 CO EWR DCA 0 4 0
## 246 735 CO EWR DCA 0 5 0
## 247 735 CO EWR DCA 0 1 0
## 248 735 CO EWR DCA 0 2 0
## 249 735 CO EWR DCA 0 3 0
## 250 735 CO EWR DCA 0 4 1
## 251 735 CO EWR DCA 0 5 0
## 252 735 CO EWR DCA 0 1 0
## 253 735 CO EWR DCA 0 2 0
## 254 735 CO EWR DCA 0 3 0
## 255 735 CO EWR DCA 0 4 0
## 256 735 CO EWR DCA 0 5 0
## 257 735 CO EWR DCA 1 1 1
## 258 735 CO EWR DCA 0 4 0
## 259 735 CO EWR DCA 0 5 0
## 260 759 CO EWR DCA 0 5 0
## 261 759 CO EWR DCA 0 1 0
## 262 800 MQ LGA DCA 0 1 0
## 263 800 US LGA DCA 0 1 0
## 264 800 MQ LGA DCA 0 2 0
## 265 800 US LGA DCA 0 2 0
## 266 800 MQ LGA DCA 0 3 0
## 267 800 US LGA DCA 0 3 0
## 268 800 MQ LGA DCA 0 4 0
## 269 800 US LGA DCA 0 4 0
## 270 800 MQ LGA DCA 0 5 1
## 271 800 US LGA DCA 0 5 0
## 272 800 MQ LGA DCA 0 1 0
## 273 800 US LGA DCA 0 1 0
## 274 800 MQ LGA DCA 0 2 0
## 275 800 US LGA DCA 0 2 0
## 276 800 MQ LGA DCA 0 3 0
## 277 800 US LGA DCA 0 3 0
## 278 800 MQ LGA DCA 0 4 1
## 279 800 US LGA DCA 0 4 0
## 280 800 MQ LGA DCA 0 5 1
## 281 800 US LGA DCA 0 5 0
## 282 800 MQ LGA DCA 0 1 1
## 283 800 US LGA DCA 0 1 0
## 284 800 MQ LGA DCA 0 2 0
## 285 800 US LGA DCA 0 2 0
## 286 800 MQ LGA DCA 0 3 0
## 287 800 US LGA DCA 0 3 0
## 288 800 MQ LGA DCA 0 4 0
## 289 800 US LGA DCA 0 4 0
## 290 800 MQ LGA DCA 0 5 0
## 291 800 US LGA DCA 0 5 0
## 292 800 MQ LGA DCA 1 1 1
## 293 800 US LGA DCA 0 1 0
## 294 800 MQ LGA DCA 0 2 0
## 295 800 US LGA DCA 0 2 0
## 296 800 MQ LGA DCA 0 3 1
## 297 800 US LGA DCA 0 3 1
## 298 800 MQ LGA DCA 0 4 0
## 299 800 US LGA DCA 0 4 0
## 300 800 MQ LGA DCA 1 5 1
## 301 800 US LGA DCA 0 5 0
## 302 830 DL LGA DCA 0 6 0
## 303 830 DL LGA DCA 0 7 0
## 304 830 DL LGA DCA 0 1 0
## 305 830 DL LGA DCA 0 2 0
## 306 830 DL LGA DCA 0 3 0
## 307 830 DL LGA DCA 0 4 0
## 308 830 DL LGA DCA 0 5 0
## 309 830 DL LGA DCA 0 6 0
## 310 830 DL LGA DCA 0 7 0
## 311 830 DL LGA DCA 0 1 0
## 312 830 DL LGA DCA 0 2 0
## 313 830 DL LGA DCA 0 3 0
## 314 830 DL LGA DCA 0 5 1
## 315 830 DL LGA DCA 0 6 0
## 316 830 DL LGA DCA 0 7 0
## 317 830 DL LGA DCA 0 1 0
## 318 830 DL LGA DCA 0 2 0
## 319 830 DL LGA DCA 0 3 0
## 320 830 DL LGA DCA 0 4 0
## 321 830 DL LGA DCA 0 5 0
## 322 830 DL LGA DCA 0 6 0
## 323 830 DL LGA DCA 0 7 0
## 324 830 DL LGA DCA 0 2 1
## 325 830 DL LGA DCA 0 4 1
## 326 830 DL LGA DCA 0 5 0
## 327 830 DL LGA DCA 0 6 1
## 328 840 DH JFK IAD 0 4 0
## 329 840 DH EWR IAD 0 4 0
## 330 840 DH JFK IAD 0 5 0
## 331 840 DH EWR IAD 0 5 0
## 332 840 DH JFK IAD 0 6 0
## 333 840 DH EWR IAD 0 6 1
## 334 840 DH JFK IAD 0 7 0
## 335 840 DH EWR IAD 0 7 0
## 336 840 DH JFK IAD 0 1 1
## 337 840 DH EWR IAD 0 1 0
## 338 840 DH JFK IAD 0 2 0
## 339 840 DH EWR IAD 0 2 0
## 340 840 DH JFK IAD 0 3 0
## 341 840 DH EWR IAD 0 3 0
## 342 840 DH JFK IAD 0 4 0
## 343 840 DH EWR IAD 0 4 0
## 344 840 DH JFK IAD 0 5 1
## 345 840 DH EWR IAD 0 5 0
## 346 840 DH JFK IAD 0 6 1
## 347 840 DH EWR IAD 0 6 0
## 348 840 DH JFK IAD 0 7 0
## 349 840 DH EWR IAD 0 7 0
## 350 840 DH JFK IAD 0 1 0
## 351 840 DH EWR IAD 0 1 0
## 352 840 DH JFK IAD 0 2 0
## 353 840 DH EWR IAD 0 2 0
## 354 840 DH JFK IAD 0 3 0
## 355 840 DH EWR IAD 0 3 0
## 356 840 DH JFK IAD 0 4 0
## 357 840 DH EWR IAD 0 4 0
## 358 840 DH JFK IAD 0 5 0
## 359 840 DH EWR IAD 0 5 0
## 360 840 DH JFK IAD 0 6 0
## 361 840 DH EWR IAD 0 6 0
## 362 840 DH JFK IAD 0 7 0
## 363 840 DH EWR IAD 0 7 0
## 364 840 DH JFK IAD 0 1 0
## 365 840 DH EWR IAD 0 1 0
## 366 840 DH JFK IAD 0 2 0
## 367 840 DH EWR IAD 0 2 0
## 368 840 DH JFK IAD 0 3 0
## 369 840 DH EWR IAD 0 3 0
## 370 840 DH JFK IAD 0 4 0
## 371 840 DH EWR IAD 0 4 0
## 372 840 DH JFK IAD 0 5 0
## 373 840 DH EWR IAD 0 5 0
## 374 840 DH JFK IAD 0 6 0
## 375 840 DH EWR IAD 0 6 0
## 376 840 DH JFK IAD 0 7 0
## 377 840 DH EWR IAD 0 7 0
## 378 840 DH JFK IAD 0 1 0
## 379 840 DH EWR IAD 0 1 0
## 380 840 DH JFK IAD 0 2 1
## 381 840 DH EWR IAD 0 2 1
## 382 840 DH JFK IAD 0 3 1
## 383 840 DH EWR IAD 0 3 0
## 384 840 DH JFK IAD 0 4 0
## 385 840 DH EWR IAD 0 4 1
## 386 840 DH JFK IAD 0 5 0
## 387 840 DH EWR IAD 0 5 0
## 388 840 DH JFK IAD 0 6 1
## 389 840 DH EWR IAD 0 6 0
## 390 845 RU EWR IAD 0 7 0
## 391 845 RU EWR IAD 0 7 0
## 392 845 RU EWR IAD 0 7 0
## 393 850 UA LGA IAD 0 4 0
## 394 850 UA LGA IAD 0 5 0
## 395 850 UA LGA IAD 0 6 0
## 396 850 UA LGA IAD 0 7 0
## 397 850 UA LGA IAD 0 1 0
## 398 850 UA LGA IAD 0 2 0
## 399 850 UA LGA IAD 0 3 0
## 400 850 UA LGA IAD 0 4 0
## 401 850 UA LGA IAD 0 5 1
## 402 850 UA LGA IAD 0 6 0
## 403 850 UA LGA IAD 0 7 0
## 404 850 UA LGA IAD 0 1 0
## 405 850 UA LGA IAD 0 2 0
## 406 850 UA LGA IAD 0 3 0
## 407 850 UA LGA IAD 0 4 1
## 408 850 UA LGA IAD 0 5 1
## 409 850 UA LGA IAD 0 6 0
## 410 850 UA LGA IAD 0 7 0
## 411 850 UA LGA IAD 0 1 0
## 412 850 UA LGA IAD 0 2 0
## 413 850 UA LGA IAD 0 3 0
## 414 850 UA LGA IAD 0 4 0
## 415 850 UA LGA IAD 0 5 0
## 416 850 UA LGA IAD 0 6 0
## 417 850 UA LGA IAD 0 7 0
## 418 850 UA LGA IAD 1 1 1
## 419 850 UA LGA IAD 1 2 1
## 420 850 UA LGA IAD 0 3 0
## 421 850 UA LGA IAD 0 4 0
## 422 850 UA LGA IAD 0 5 0
## 423 850 UA LGA IAD 0 6 0
## 424 900 MQ LGA DCA 0 4 0
## 425 900 US LGA DCA 0 4 0
## 426 900 MQ LGA DCA 0 5 0
## 427 900 US LGA DCA 0 5 0
## 428 900 RU EWR DCA 0 5 0
## 429 900 RU EWR IAD 0 5 0
## 430 900 MQ LGA DCA 0 6 0
## 431 900 US LGA DCA 0 6 0
## 432 900 US LGA DCA 0 7 0
## 433 900 RU EWR IAD 0 7 0
## 434 900 MQ LGA DCA 0 1 0
## 435 900 US LGA DCA 0 1 0
## 436 900 RU EWR DCA 0 1 1
## 437 900 RU EWR IAD 0 1 0
## 438 900 MQ LGA DCA 0 2 0
## 439 900 US LGA DCA 0 2 0
## 440 900 RU EWR DCA 0 2 0
## 441 900 MQ LGA DCA 0 3 0
## 442 900 US LGA DCA 0 3 0
## 443 900 RU EWR DCA 0 3 0
## 444 900 MQ LGA DCA 0 4 0
## 445 900 US LGA DCA 0 4 0
## 446 900 RU EWR DCA 0 4 0
## 447 900 MQ LGA DCA 0 5 0
## 448 900 RU EWR DCA 0 5 0
## 449 900 MQ LGA DCA 0 6 0
## 450 900 US LGA DCA 0 6 0
## 451 900 US LGA DCA 0 7 0
## 452 900 MQ LGA DCA 0 1 0
## 453 900 US LGA DCA 0 1 0
## 454 900 RU EWR DCA 0 1 0
## 455 900 MQ LGA DCA 0 2 0
## 456 900 US LGA DCA 0 2 0
## 457 900 RU EWR DCA 0 2 0
## 458 900 MQ LGA DCA 0 3 0
## 459 900 US LGA DCA 0 3 0
## 460 900 RU EWR DCA 0 3 0
## 461 900 US LGA DCA 0 4 1
## 462 900 RU EWR DCA 0 4 1
## 463 900 MQ LGA DCA 0 5 1
## 464 900 US LGA DCA 0 5 1
## 465 900 RU EWR DCA 0 5 0
## 466 900 MQ LGA DCA 0 6 0
## 467 900 US LGA DCA 0 6 0
## 468 900 US LGA DCA 0 7 0
## 469 900 MQ LGA DCA 0 1 0
## 470 900 US LGA DCA 0 1 0
## 471 900 RU EWR DCA 0 1 0
## 472 900 MQ LGA DCA 0 2 0
## 473 900 US LGA DCA 0 2 0
## 474 900 RU EWR DCA 0 2 0
## 475 900 MQ LGA DCA 0 3 0
## 476 900 US LGA DCA 0 3 0
## 477 900 RU EWR DCA 0 3 0
## 478 900 MQ LGA DCA 0 4 0
## 479 900 US LGA DCA 0 4 0
## 480 900 RU EWR DCA 0 4 0
## 481 900 MQ LGA DCA 0 5 0
## 482 900 US LGA DCA 0 5 0
## 483 900 RU EWR DCA 0 5 0
## 484 900 MQ LGA DCA 0 6 1
## 485 900 US LGA DCA 0 6 0
## 486 900 US LGA DCA 0 7 0
## 487 900 MQ LGA DCA 1 1 1
## 488 900 US LGA DCA 1 1 1
## 489 900 RU EWR DCA 0 1 0
## 490 900 US LGA DCA 0 2 0
## 491 900 US LGA DCA 0 3 1
## 492 900 RU EWR DCA 0 3 1
## 493 900 MQ LGA DCA 0 4 0
## 494 900 US LGA DCA 0 4 0
## 495 900 RU EWR DCA 0 4 0
## 496 900 MQ LGA DCA 0 5 0
## 497 900 US LGA DCA 0 5 0
## 498 900 RU EWR DCA 0 5 0
## 499 900 MQ LGA DCA 0 6 0
## 500 900 US LGA DCA 0 6 0
## 501 925 MQ JFK DCA 0 7 0
## 502 925 MQ JFK DCA 0 7 0
## 503 925 MQ JFK DCA 0 7 0
## 504 930 DL LGA DCA 0 4 0
## 505 930 DL LGA DCA 0 5 0
## 506 930 RU EWR DCA 0 6 0
## 507 930 RU EWR DCA 0 7 0
## 508 930 DL LGA DCA 0 1 0
## 509 930 DL LGA DCA 0 2 0
## 510 930 DL LGA DCA 0 3 0
## 511 930 DL LGA DCA 0 4 0
## 512 930 DL LGA DCA 0 5 0
## 513 930 RU EWR DCA 0 6 0
## 514 930 RU EWR DCA 0 7 0
## 515 930 DL LGA DCA 0 1 1
## 516 930 DL LGA DCA 0 2 0
## 517 930 DL LGA DCA 0 3 0
## 518 930 DL LGA DCA 0 4 0
## 519 930 DL LGA DCA 0 5 0
## 520 930 RU EWR DCA 0 6 0
## 521 930 RU EWR DCA 0 7 0
## 522 930 DL LGA DCA 0 2 0
## 523 930 DL LGA DCA 0 3 0
## 524 930 DL LGA DCA 0 4 0
## 525 930 DL LGA DCA 0 5 0
## 526 930 RU EWR DCA 0 6 0
## 527 930 RU EWR DCA 0 7 0
## 528 930 DL LGA DCA 0 1 0
## 529 930 DL LGA DCA 0 3 0
## 530 930 DL LGA DCA 0 5 0
## 531 930 RU EWR DCA 0 6 0
## 532 1000 US LGA DCA 0 7 0
## 533 1000 US LGA DCA 0 1 0
## 534 1000 US LGA DCA 0 2 0
## 535 1000 US LGA DCA 0 3 0
## 536 1000 US LGA DCA 0 4 0
## 537 1000 US LGA DCA 0 5 0
## 538 1000 US LGA DCA 0 7 0
## 539 1000 US LGA DCA 0 1 0
## 540 1000 US LGA DCA 0 2 0
## 541 1000 US LGA DCA 0 3 0
## 542 1000 US LGA DCA 0 5 0
## 543 1000 US LGA DCA 0 7 0
## 544 1000 US LGA DCA 0 1 0
## 545 1000 US LGA DCA 0 2 0
## 546 1000 US LGA DCA 0 3 0
## 547 1000 US LGA DCA 0 4 0
## 548 1000 US LGA DCA 0 5 0
## 549 1000 US LGA DCA 0 7 0
## 550 1000 US LGA DCA 0 1 0
## 551 1000 US LGA DCA 0 2 0
## 552 1000 US LGA DCA 0 3 0
## 553 1000 US LGA DCA 0 4 0
## 554 1000 US LGA DCA 0 5 0
## 555 1030 RU EWR BWI 0 4 0
## 556 1030 RU EWR BWI 0 5 0
## 557 1030 DL LGA DCA 0 6 0
## 558 1030 RU EWR BWI 0 6 0
## 559 1030 DL LGA DCA 0 7 0
## 560 1030 RU EWR BWI 0 7 1
## 561 1030 DL LGA DCA 0 1 0
## 562 1030 RU EWR BWI 0 1 1
## 563 1030 DL LGA DCA 0 2 0
## 564 1030 RU EWR BWI 0 2 0
## 565 1030 DL LGA DCA 0 3 0
## 566 1030 RU EWR BWI 0 3 1
## 567 1030 DL LGA DCA 0 4 0
## 568 1030 RU EWR BWI 0 4 0
## 569 1030 DL LGA DCA 0 5 0
## 570 1030 RU EWR BWI 0 5 1
## 571 1030 DL LGA DCA 0 6 0
## 572 1030 RU EWR BWI 0 6 0
## 573 1030 DL LGA DCA 0 7 0
## 574 1030 RU EWR BWI 0 7 0
## 575 1030 DL LGA DCA 0 1 0
## 576 1030 RU EWR BWI 0 1 0
## 577 1030 DL LGA DCA 0 2 0
## 578 1030 RU EWR BWI 0 2 0
## 579 1030 DL LGA DCA 0 3 0
## 580 1030 RU EWR BWI 0 3 0
## 581 1030 RU EWR BWI 0 4 1
## 582 1030 DL LGA DCA 0 5 1
## 583 1030 RU EWR BWI 0 5 1
## 584 1030 DL LGA DCA 0 6 0
## 585 1030 RU EWR BWI 0 6 0
## 586 1030 DL LGA DCA 0 7 0
## 587 1030 RU EWR BWI 1 7 1
## 588 1030 DL LGA DCA 0 1 0
## 589 1030 RU EWR BWI 0 1 0
## 590 1030 DL LGA DCA 0 2 0
## 591 1030 RU EWR BWI 0 2 0
## 592 1030 DL LGA DCA 0 3 0
## 593 1030 RU EWR BWI 0 3 0
## 594 1030 DL LGA DCA 0 4 0
## 595 1030 RU EWR BWI 0 4 0
## 596 1030 DL LGA DCA 0 5 0
## 597 1030 RU EWR BWI 0 5 0
## 598 1030 DL LGA DCA 0 6 0
## 599 1030 RU EWR BWI 0 6 0
## 600 1030 DL LGA DCA 0 7 0
## 601 1030 RU EWR BWI 0 7 1
## 602 1030 DL LGA DCA 0 1 0
## 603 1030 DL LGA DCA 0 2 0
## 604 1030 RU EWR BWI 0 3 0
## 605 1030 DL LGA DCA 0 4 0
## 606 1030 RU EWR BWI 0 4 0
## 607 1030 DL LGA DCA 0 5 0
## 608 1030 RU EWR BWI 0 5 0
## 609 1030 DL LGA DCA 0 6 0
## 610 1030 RU EWR BWI 0 6 0
## 611 1039 DH LGA IAD 0 4 0
## 612 1039 DH LGA IAD 0 5 1
## 613 1039 DH LGA IAD 0 6 0
## 614 1039 DH LGA IAD 0 7 0
## 615 1039 DH LGA IAD 0 1 0
## 616 1039 DH LGA IAD 0 2 0
## 617 1040 DH LGA IAD 0 3 0
## 618 1040 DH LGA IAD 0 4 0
## 619 1040 DH LGA IAD 0 5 0
## 620 1040 DH LGA IAD 0 1 0
## 621 1040 DH LGA IAD 0 2 0
## 622 1040 DH LGA IAD 0 3 0
## 623 1040 DH LGA IAD 0 1 0
## 624 1040 DH LGA IAD 0 2 0
## 625 1040 DH LGA IAD 0 3 0
## 626 1040 DH LGA IAD 0 4 0
## 627 1040 DH LGA IAD 0 5 0
## 628 1040 DH LGA IAD 0 1 1
## 629 1040 DH LGA IAD 0 2 0
## 630 1040 DH LGA IAD 0 3 0
## 631 1040 DH LGA IAD 0 5 0
## 632 1100 US LGA DCA 0 4 0
## 633 1100 MQ LGA DCA 0 5 0
## 634 1100 US LGA DCA 0 5 0
## 635 1100 US LGA DCA 0 6 0
## 636 1100 US LGA DCA 0 7 0
## 637 1100 MQ LGA DCA 0 1 0
## 638 1100 US LGA DCA 0 1 0
## 639 1100 MQ LGA DCA 0 2 0
## 640 1100 US LGA DCA 0 2 0
## 641 1100 MQ LGA DCA 0 3 0
## 642 1100 US LGA DCA 0 3 0
## 643 1100 MQ LGA DCA 0 4 0
## 644 1100 US LGA DCA 0 4 0
## 645 1100 MQ LGA DCA 0 5 1
## 646 1100 US LGA DCA 0 5 0
## 647 1100 US LGA DCA 0 6 0
## 648 1100 US LGA DCA 0 7 0
## 649 1100 MQ LGA DCA 0 1 0
## 650 1100 US LGA DCA 0 1 1
## 651 1100 MQ LGA DCA 0 2 0
## 652 1100 US LGA DCA 0 2 0
## 653 1100 MQ LGA DCA 0 3 1
## 654 1100 US LGA DCA 0 3 0
## 655 1100 MQ LGA DCA 0 4 0
## 656 1100 US LGA DCA 0 4 0
## 657 1100 MQ LGA DCA 0 5 1
## 658 1100 US LGA DCA 0 5 0
## 659 1100 US LGA DCA 0 6 0
## 660 1100 US LGA DCA 0 7 0
## 661 1100 MQ LGA DCA 0 1 0
## 662 1100 US LGA DCA 0 1 0
## 663 1100 MQ LGA DCA 0 2 0
## 664 1100 US LGA DCA 0 2 0
## 665 1100 MQ LGA DCA 0 3 0
## 666 1100 US LGA DCA 0 3 0
## 667 1100 MQ LGA DCA 0 4 0
## 668 1100 US LGA DCA 0 4 0
## 669 1100 MQ LGA DCA 0 5 0
## 670 1100 US LGA DCA 0 5 0
## 671 1100 US LGA DCA 0 6 0
## 672 1100 US LGA DCA 0 7 0
## 673 1100 US LGA DCA 0 1 1
## 674 1100 US LGA DCA 0 2 0
## 675 1100 US LGA DCA 0 3 0
## 676 1100 US LGA DCA 0 4 0
## 677 1100 MQ LGA DCA 0 5 0
## 678 1100 US LGA DCA 0 5 0
## 679 1100 US LGA DCA 0 6 0
## 680 1130 DL LGA DCA 0 1 0
## 681 1130 DL LGA DCA 0 2 0
## 682 1130 DL LGA DCA 0 3 0
## 683 1130 DL LGA DCA 0 4 0
## 684 1130 DL LGA DCA 0 5 0
## 685 1130 DL LGA DCA 0 7 0
## 686 1130 DL LGA DCA 0 1 0
## 687 1130 DL LGA DCA 0 2 0
## 688 1130 DL LGA DCA 0 3 1
## 689 1130 DL LGA DCA 0 4 0
## 690 1130 DL LGA DCA 0 5 0
## 691 1130 DL LGA DCA 0 2 0
## 692 1130 DL LGA DCA 0 3 0
## 693 1130 DL LGA DCA 0 4 0
## 694 1130 DL LGA DCA 0 5 0
## 695 1130 DL LGA DCA 0 7 0
## 696 1130 DL LGA DCA 0 1 0
## 697 1130 DL LGA DCA 0 3 0
## 698 1130 DL LGA DCA 0 4 0
## 699 1130 DL LGA DCA 0 5 0
## 700 1200 US LGA DCA 0 7 0
## 701 1200 US LGA DCA 0 1 0
## 702 1200 US LGA DCA 0 2 0
## 703 1200 US LGA DCA 0 3 0
## 704 1200 US LGA DCA 0 4 0
## 705 1200 US LGA DCA 0 5 0
## 706 1200 US LGA DCA 0 7 0
## 707 1200 US LGA DCA 0 1 0
## 708 1200 US LGA DCA 0 2 0
## 709 1200 US LGA DCA 0 3 0
## 710 1200 US LGA DCA 0 4 0
## 711 1200 US LGA DCA 0 5 0
## 712 1200 US LGA DCA 0 7 0
## 713 1200 US LGA DCA 0 1 0
## 714 1200 US LGA DCA 0 2 0
## 715 1200 US LGA DCA 0 3 0
## 716 1200 US LGA DCA 0 4 0
## 717 1200 US LGA DCA 0 5 0
## 718 1200 US LGA DCA 0 7 0
## 719 1200 US LGA DCA 0 2 0
## 720 1200 US LGA DCA 0 4 0
## 721 1200 US LGA DCA 0 5 0
## 722 1230 DL LGA DCA 0 4 0
## 723 1230 DL LGA DCA 0 5 0
## 724 1230 DL LGA DCA 0 6 0
## 725 1230 DL LGA DCA 0 7 0
## 726 1230 DL LGA DCA 0 1 0
## 727 1230 DL LGA DCA 0 2 0
## 728 1230 DL LGA DCA 0 3 0
## 729 1230 DL LGA DCA 0 4 0
## 730 1230 DL LGA DCA 0 5 0
## 731 1230 DL LGA DCA 0 6 0
## 732 1230 DL LGA DCA 0 7 0
## 733 1230 DL LGA DCA 0 1 0
## 734 1230 DL LGA DCA 0 2 0
## 735 1230 DL LGA DCA 0 3 0
## 736 1230 DL LGA DCA 0 5 0
## 737 1230 DL LGA DCA 0 7 1
## 738 1230 DL LGA DCA 0 1 0
## 739 1230 DL LGA DCA 0 2 0
## 740 1230 DL LGA DCA 0 3 0
## 741 1230 DL LGA DCA 0 4 0
## 742 1230 DL LGA DCA 0 5 0
## 743 1230 DL LGA DCA 0 6 0
## 744 1230 DL LGA DCA 0 7 0
## 745 1230 DL LGA DCA 0 1 0
## 746 1230 DL LGA DCA 0 2 0
## 747 1230 DL LGA DCA 0 4 0
## 748 1230 DL LGA DCA 0 5 0
## 749 1230 DL LGA DCA 0 6 0
## 750 1240 DH JFK IAD 0 4 0
## 751 1240 DH JFK IAD 0 5 0
## 752 1240 DH JFK IAD 0 6 0
## 753 1240 DH JFK IAD 0 7 0
## 754 1240 DH JFK IAD 0 1 1
## 755 1240 DH JFK IAD 0 2 0
## 756 1240 DH JFK IAD 0 3 0
## 757 1240 DH JFK IAD 0 4 0
## 758 1240 DH JFK IAD 0 5 0
## 759 1240 DH JFK IAD 0 6 1
## 760 1240 DH JFK IAD 0 7 0
## 761 1240 DH JFK IAD 0 1 0
## 762 1240 DH JFK IAD 0 2 0
## 763 1240 DH JFK IAD 0 3 0
## 764 1240 DH JFK IAD 0 4 0
## 765 1240 DH JFK IAD 0 5 0
## 766 1240 DH JFK IAD 0 6 0
## 767 1240 DH JFK IAD 0 7 0
## 768 1240 DH JFK IAD 0 1 0
## 769 1240 DH JFK IAD 0 2 1
## 770 1240 DH JFK IAD 0 3 0
## 771 1240 DH JFK IAD 0 4 0
## 772 1240 DH JFK IAD 0 5 0
## 773 1240 DH JFK IAD 0 6 0
## 774 1240 DH JFK IAD 0 7 1
## 775 1240 DH JFK IAD 0 1 0
## 776 1240 DH JFK IAD 0 2 1
## 777 1240 DH JFK IAD 0 3 1
## 778 1240 DH JFK IAD 0 4 0
## 779 1240 DH JFK IAD 0 5 0
## 780 1240 DH JFK IAD 0 6 0
## 781 1245 DH LGA IAD 0 4 0
## 782 1245 DH EWR IAD 0 4 0
## 783 1245 DH LGA IAD 0 5 0
## 784 1245 DH EWR IAD 0 5 1
## 785 1245 DH LGA IAD 0 6 0
## 786 1245 DH EWR IAD 0 6 1
## 787 1245 DH LGA IAD 0 7 0
## 788 1245 DH EWR IAD 0 7 1
## 789 1245 DH LGA IAD 0 1 1
## 790 1245 DH EWR IAD 0 1 1
## 791 1245 DH LGA IAD 0 2 0
## 792 1245 DH EWR IAD 0 2 0
## 793 1245 DH LGA IAD 0 3 0
## 794 1245 DH EWR IAD 0 3 1
## 795 1245 DH LGA IAD 0 4 0
## 796 1245 DH EWR IAD 0 4 0
## 797 1245 DH LGA IAD 0 5 0
## 798 1245 DH EWR IAD 0 5 0
## 799 1245 DH LGA IAD 0 6 0
## 800 1245 DH EWR IAD 0 6 0
## 801 1245 DH LGA IAD 0 7 0
## 802 1245 DH EWR IAD 0 7 0
## 803 1245 DH LGA IAD 0 1 0
## 804 1245 DH EWR IAD 0 1 1
## 805 1245 DH LGA IAD 0 2 0
## 806 1245 DH EWR IAD 0 2 0
## 807 1245 DH LGA IAD 0 3 0
## 808 1245 DH EWR IAD 0 3 0
## 809 1245 DH LGA IAD 0 4 0
## 810 1245 DH EWR IAD 0 4 0
## 811 1245 DH EWR IAD 0 5 0
## 812 1245 DH LGA IAD 0 6 0
## 813 1245 DH EWR IAD 0 6 0
## 814 1245 DH LGA IAD 0 7 0
## 815 1245 DH EWR IAD 0 7 1
## 816 1245 DH LGA IAD 0 1 0
## 817 1245 DH EWR IAD 0 1 0
## 818 1245 DH LGA IAD 0 2 0
## 819 1245 DH EWR IAD 0 2 0
## 820 1245 DH LGA IAD 0 3 0
## 821 1245 DH EWR IAD 0 3 0
## 822 1245 DH LGA IAD 0 4 1
## 823 1245 DH EWR IAD 0 4 0
## 824 1245 DH LGA IAD 0 5 1
## 825 1245 DH EWR IAD 0 5 0
## 826 1245 DH LGA IAD 0 6 0
## 827 1245 DH EWR IAD 0 6 0
## 828 1245 DH LGA IAD 0 7 0
## 829 1245 DH EWR IAD 0 7 0
## 830 1245 DH LGA IAD 0 1 0
## 831 1245 DH EWR IAD 0 1 1
## 832 1245 DH LGA IAD 1 2 1
## 833 1245 DH EWR IAD 0 2 1
## 834 1245 DH LGA IAD 0 3 0
## 835 1245 DH EWR IAD 0 3 1
## 836 1245 DH LGA IAD 0 4 1
## 837 1245 DH EWR IAD 0 4 0
## 838 1245 DH LGA IAD 0 5 0
## 839 1245 DH EWR IAD 0 5 1
## 840 1245 DH LGA IAD 0 6 0
## 841 1245 DH EWR IAD 0 6 0
## 842 1300 MQ LGA DCA 0 4 0
## 843 1300 US LGA DCA 0 4 0
## 844 1300 CO EWR DCA 0 4 0
## 845 1300 RU EWR IAD 0 4 0
## 846 1300 MQ LGA DCA 0 5 0
## 847 1300 US LGA DCA 0 5 0
## 848 1300 CO EWR DCA 0 5 0
## 849 1300 RU EWR IAD 0 5 0
## 850 1300 MQ LGA DCA 0 6 0
## 851 1300 US LGA DCA 0 6 0
## 852 1300 CO EWR DCA 0 6 0
## 853 1300 MQ LGA DCA 0 7 0
## 854 1300 US LGA DCA 0 7 0
## 855 1300 CO EWR DCA 0 7 0
## 856 1300 MQ LGA DCA 0 1 0
## 857 1300 US LGA DCA 0 1 0
## 858 1300 CO EWR DCA 0 1 1
## 859 1300 RU EWR IAD 0 1 1
## 860 1300 MQ LGA DCA 0 2 0
## 861 1300 US LGA DCA 0 2 0
## 862 1300 CO EWR DCA 0 2 0
## 863 1300 RU EWR IAD 0 2 0
## 864 1300 MQ LGA DCA 0 3 0
## 865 1300 US LGA DCA 0 3 0
## 866 1300 CO EWR DCA 0 3 0
## 867 1300 RU EWR IAD 0 3 0
## 868 1300 MQ LGA DCA 0 4 0
## 869 1300 US LGA DCA 0 4 0
## 870 1300 CO EWR DCA 0 4 0
## 871 1300 RU EWR IAD 0 4 0
## 872 1300 MQ LGA DCA 0 5 0
## 873 1300 US LGA DCA 0 5 0
## 874 1300 CO EWR DCA 0 5 0
## 875 1300 RU EWR IAD 0 5 0
## 876 1300 MQ LGA DCA 0 6 0
## 877 1300 US LGA DCA 0 6 0
## 878 1300 CO EWR DCA 0 6 0
## 879 1300 MQ LGA DCA 0 7 1
## 880 1300 US LGA DCA 0 7 0
## 881 1300 CO EWR DCA 0 7 0
## 882 1300 MQ LGA DCA 0 1 0
## 883 1300 US LGA DCA 0 1 0
## 884 1300 CO EWR DCA 0 1 0
## 885 1300 RU EWR IAD 0 1 0
## 886 1300 MQ LGA DCA 0 2 0
## 887 1300 US LGA DCA 0 2 0
## 888 1300 CO EWR DCA 0 2 0
## 889 1300 RU EWR IAD 0 2 0
## 890 1300 MQ LGA DCA 0 3 0
## 891 1300 US LGA DCA 0 3 0
## 892 1300 CO EWR DCA 0 3 0
## 893 1300 RU EWR IAD 0 3 0
## 894 1300 MQ LGA DCA 0 4 1
## 895 1300 CO EWR DCA 0 4 0
## 896 1300 RU EWR IAD 0 4 1
## 897 1300 MQ LGA DCA 0 5 1
## 898 1300 US LGA DCA 0 5 0
## 899 1300 CO EWR DCA 0 5 1
## 900 1300 RU EWR IAD 0 5 1
## 901 1300 MQ LGA DCA 0 6 0
## 902 1300 US LGA DCA 0 6 0
## 903 1300 CO EWR DCA 0 6 0
## 904 1300 MQ LGA DCA 0 7 1
## 905 1300 US LGA DCA 0 7 1
## 906 1300 CO EWR DCA 0 7 0
## 907 1300 MQ LGA DCA 0 1 0
## 908 1300 US LGA DCA 0 1 0
## 909 1300 CO EWR DCA 0 1 0
## 910 1300 RU EWR IAD 0 1 0
## 911 1300 MQ LGA DCA 0 2 0
## 912 1300 US LGA DCA 0 2 0
## 913 1300 CO EWR DCA 0 2 0
## 914 1300 RU EWR IAD 0 2 0
## 915 1300 MQ LGA DCA 0 3 0
## 916 1300 US LGA DCA 0 3 0
## 917 1300 CO EWR DCA 0 3 0
## 918 1300 RU EWR IAD 0 3 0
## 919 1300 MQ LGA DCA 0 4 0
## 920 1300 US LGA DCA 0 4 0
## 921 1300 CO EWR DCA 0 4 0
## 922 1300 RU EWR IAD 0 4 0
## 923 1300 MQ LGA DCA 0 5 1
## 924 1300 US LGA DCA 0 5 1
## 925 1300 CO EWR DCA 0 5 0
## 926 1300 RU EWR IAD 0 5 0
## 927 1300 MQ LGA DCA 0 6 0
## 928 1300 US LGA DCA 0 6 0
## 929 1300 CO EWR DCA 0 6 0
## 930 1300 MQ LGA DCA 0 7 0
## 931 1300 US LGA DCA 0 7 0
## 932 1300 CO EWR DCA 0 7 0
## 933 1300 MQ LGA DCA 1 1 1
## 934 1300 CO EWR DCA 0 1 0
## 935 1300 RU EWR IAD 0 1 0
## 936 1300 US LGA DCA 0 2 0
## 937 1300 CO EWR DCA 0 2 1
## 938 1300 US LGA DCA 0 3 0
## 939 1300 CO EWR DCA 0 3 0
## 940 1300 MQ LGA DCA 0 4 0
## 941 1300 US LGA DCA 0 4 0
## 942 1300 CO EWR DCA 0 4 0
## 943 1300 RU EWR IAD 0 4 0
## 944 1300 MQ LGA DCA 0 5 0
## 945 1300 US LGA DCA 0 5 0
## 946 1300 CO EWR DCA 0 5 0
## 947 1300 RU EWR IAD 0 5 0
## 948 1300 MQ LGA DCA 0 6 0
## 949 1300 US LGA DCA 0 6 0
## 950 1300 CO EWR DCA 0 6 0
## 951 1315 RU EWR BWI 0 7 1
## 952 1315 RU EWR BWI 0 7 0
## 953 1315 RU EWR BWI 0 7 1
## 954 1315 RU EWR BWI 0 7 0
## 955 1330 DL LGA DCA 0 1 0
## 956 1330 DL LGA DCA 0 2 0
## 957 1330 DL LGA DCA 0 3 0
## 958 1330 DL LGA DCA 0 4 0
## 959 1330 DL LGA DCA 0 5 0
## 960 1330 DL LGA DCA 0 7 0
## 961 1330 DL LGA DCA 0 1 0
## 962 1330 DL LGA DCA 0 2 0
## 963 1330 DL LGA DCA 0 3 0
## 964 1330 DL LGA DCA 0 4 0
## 965 1330 DL LGA DCA 0 5 0
## 966 1330 DL LGA DCA 0 2 0
## 967 1330 DL LGA DCA 0 3 0
## 968 1330 DL LGA DCA 0 4 0
## 969 1330 DL LGA DCA 0 7 0
## 970 1330 DL LGA DCA 0 1 0
## 971 1330 DL LGA DCA 0 3 0
## 972 1330 DL LGA DCA 0 4 0
## 973 1330 DL LGA DCA 0 5 0
## 974 1359 RU EWR DCA 0 2 0
## 975 1359 RU EWR DCA 0 3 0
## 976 1359 RU EWR DCA 0 4 0
## 977 1359 RU EWR DCA 0 5 0
## 978 1359 RU EWR DCA 0 6 0
## 979 1359 RU EWR DCA 0 7 0
## 980 1359 RU EWR DCA 0 1 0
## 981 1359 RU EWR DCA 0 2 0
## 982 1359 RU EWR DCA 0 3 0
## 983 1359 RU EWR DCA 0 4 0
## 984 1359 RU EWR DCA 0 5 1
## 985 1359 RU EWR DCA 0 6 0
## 986 1359 RU EWR DCA 0 7 1
## 987 1359 RU EWR DCA 0 1 0
## 988 1359 RU EWR DCA 0 2 0
## 989 1359 RU EWR DCA 0 3 0
## 990 1359 RU EWR DCA 0 4 0
## 991 1359 RU EWR DCA 0 5 0
## 992 1359 RU EWR DCA 0 6 0
## 993 1359 RU EWR DCA 0 7 0
## 994 1359 RU EWR DCA 0 1 0
## 995 1359 RU EWR DCA 0 3 0
## 996 1359 RU EWR DCA 0 4 1
## 997 1359 RU EWR DCA 0 5 1
## 998 1359 RU EWR DCA 0 6 0
## 999 1400 MQ LGA DCA 0 4 0
## 1000 1400 RU EWR DCA 0 4 0
## 1001 1400 MQ LGA DCA 0 5 0
## 1002 1400 RU EWR DCA 0 5 0
## 1003 1400 RU EWR DCA 0 6 0
## 1004 1400 US LGA DCA 0 7 0
## 1005 1400 RU EWR DCA 0 7 1
## 1006 1400 US LGA DCA 0 1 0
## 1007 1400 RU EWR DCA 0 1 1
## 1008 1400 MQ LGA DCA 0 2 0
## 1009 1400 US LGA DCA 0 2 0
## 1010 1400 MQ LGA DCA 0 3 0
## 1011 1400 US LGA DCA 0 3 0
## 1012 1400 MQ LGA DCA 0 4 0
## 1013 1400 US LGA DCA 0 4 0
## 1014 1400 MQ LGA DCA 0 5 0
## 1015 1400 US LGA DCA 0 5 0
## 1016 1400 US LGA DCA 0 7 0
## 1017 1400 US LGA DCA 0 1 0
## 1018 1400 MQ LGA DCA 0 2 0
## 1019 1400 US LGA DCA 0 2 0
## 1020 1400 US LGA DCA 0 3 0
## 1021 1400 MQ LGA DCA 0 4 0
## 1022 1400 US LGA DCA 0 4 0
## 1023 1400 MQ LGA DCA 0 5 1
## 1024 1400 US LGA DCA 0 5 0
## 1025 1400 US LGA DCA 0 7 0
## 1026 1400 MQ LGA DCA 0 1 0
## 1027 1400 US LGA DCA 0 1 0
## 1028 1400 MQ LGA DCA 0 2 0
## 1029 1400 US LGA DCA 0 2 0
## 1030 1400 MQ LGA DCA 0 3 0
## 1031 1400 US LGA DCA 0 3 0
## 1032 1400 MQ LGA DCA 0 4 0
## 1033 1400 US LGA DCA 0 4 0
## 1034 1400 MQ LGA DCA 0 5 0
## 1035 1400 US LGA DCA 0 5 0
## 1036 1400 US LGA DCA 0 7 0
## 1037 1400 US LGA DCA 0 1 0
## 1038 1400 MQ LGA DCA 1 2 1
## 1039 1400 US LGA DCA 0 2 0
## 1040 1400 MQ LGA DCA 0 3 1
## 1041 1400 MQ LGA DCA 0 4 1
## 1042 1400 US LGA DCA 0 4 0
## 1043 1400 MQ LGA DCA 0 5 0
## 1044 1400 US LGA DCA 0 5 0
## 1045 1430 DL LGA DCA 0 4 0
## 1046 1430 DL LGA DCA 0 5 0
## 1047 1430 DH EWR IAD 0 5 1
## 1048 1430 DL LGA DCA 0 6 0
## 1049 1430 DL LGA DCA 0 7 0
## 1050 1430 DH EWR IAD 0 7 1
## 1051 1430 DL LGA DCA 0 1 0
## 1052 1430 DH EWR IAD 0 1 1
## 1053 1430 DL LGA DCA 0 2 0
## 1054 1430 DH EWR IAD 0 2 0
## 1055 1430 DL LGA DCA 0 3 0
## 1056 1430 DH EWR IAD 0 3 0
## 1057 1430 DL LGA DCA 0 4 0
## 1058 1430 DH EWR IAD 0 4 0
## 1059 1430 DL LGA DCA 0 5 0
## 1060 1430 DH EWR IAD 0 5 0
## 1061 1430 DL LGA DCA 0 6 0
## 1062 1430 DL LGA DCA 0 7 0
## 1063 1430 DH EWR IAD 0 7 1
## 1064 1430 DL LGA DCA 0 1 0
## 1065 1430 DH EWR IAD 0 1 0
## 1066 1430 DL LGA DCA 0 2 0
## 1067 1430 DH EWR IAD 0 2 1
## 1068 1430 DL LGA DCA 0 3 0
## 1069 1430 DH EWR IAD 0 3 1
## 1070 1430 DL LGA DCA 0 4 0
## 1071 1430 DL LGA DCA 0 5 0
## 1072 1430 DL LGA DCA 0 6 0
## 1073 1430 DL LGA DCA 0 7 0
## 1074 1430 DL LGA DCA 0 1 0
## 1075 1430 DH EWR IAD 0 1 0
## 1076 1430 DL LGA DCA 0 2 0
## 1077 1430 DH EWR IAD 0 2 0
## 1078 1430 DL LGA DCA 0 3 0
## 1079 1430 DH EWR IAD 0 3 0
## 1080 1430 DL LGA DCA 0 4 1
## 1081 1430 DH EWR IAD 0 4 0
## 1082 1430 DL LGA DCA 0 5 0
## 1083 1430 DH EWR IAD 0 5 0
## 1084 1430 DL LGA DCA 0 6 0
## 1085 1430 DL LGA DCA 0 7 0
## 1086 1430 DH EWR IAD 0 7 1
## 1087 1430 DL LGA DCA 0 1 1
## 1088 1430 DH EWR IAD 1 1 1
## 1089 1430 DL LGA DCA 0 2 0
## 1090 1430 DH EWR IAD 1 2 1
## 1091 1430 DH EWR IAD 0 3 0
## 1092 1430 DL LGA DCA 0 4 0
## 1093 1430 DH EWR IAD 0 4 0
## 1094 1430 DL LGA DCA 0 5 0
## 1095 1430 DH EWR IAD 0 5 0
## 1096 1430 DL LGA DCA 0 6 0
## 1097 1455 OH JFK BWI 0 4 0
## 1098 1455 DL JFK DCA 0 4 0
## 1099 1455 RU EWR BWI 0 4 0
## 1100 1455 OH JFK BWI 0 5 0
## 1101 1455 DH LGA IAD 0 5 1
## 1102 1455 DH JFK IAD 0 5 0
## 1103 1455 DL JFK DCA 0 5 0
## 1104 1455 RU EWR BWI 0 5 0
## 1105 1455 DH JFK IAD 0 6 0
## 1106 1455 DL JFK DCA 0 6 1
## 1107 1455 RU EWR BWI 0 6 0
## 1108 1455 OH JFK BWI 0 7 1
## 1109 1455 DH LGA IAD 0 7 1
## 1110 1455 DH JFK IAD 0 7 0
## 1111 1455 DL JFK DCA 0 7 0
## 1112 1455 RU EWR BWI 0 7 1
## 1113 1455 OH JFK BWI 0 1 1
## 1114 1455 DH LGA IAD 0 1 1
## 1115 1455 DL JFK DCA 0 1 0
## 1116 1455 RU EWR BWI 0 1 1
## 1117 1455 OH JFK BWI 0 2 0
## 1118 1455 DH LGA IAD 0 2 0
## 1119 1455 DH JFK IAD 0 2 0
## 1120 1455 DL JFK DCA 0 2 0
## 1121 1455 RU EWR BWI 0 2 0
## 1122 1455 OH JFK BWI 0 3 0
## 1123 1455 DH LGA IAD 0 3 0
## 1124 1455 DH JFK IAD 0 3 0
## 1125 1455 DL JFK DCA 0 3 0
## 1126 1455 RU EWR BWI 0 3 0
## 1127 1455 OH JFK BWI 0 4 0
## 1128 1455 DH LGA IAD 0 4 1
## 1129 1455 DH JFK IAD 0 4 0
## 1130 1455 DL JFK DCA 0 4 1
## 1131 1455 RU EWR BWI 0 4 0
## 1132 1455 OH JFK BWI 0 5 0
## 1133 1455 DH LGA IAD 0 5 1
## 1134 1455 DH JFK IAD 0 5 0
## 1135 1455 DL JFK DCA 0 5 0
## 1136 1455 RU EWR BWI 0 5 0
## 1137 1455 OH JFK BWI 0 6 0
## 1138 1455 DL JFK DCA 0 6 1
## 1139 1455 RU EWR BWI 0 6 0
## 1140 1455 OH JFK BWI 0 7 0
## 1141 1455 DH LGA IAD 0 7 0
## 1142 1455 DH JFK IAD 0 7 1
## 1143 1455 DL JFK DCA 0 7 1
## 1144 1455 RU EWR BWI 0 7 0
## 1145 1455 OH JFK BWI 0 1 0
## 1146 1455 DH LGA IAD 0 1 0
## 1147 1455 DH JFK IAD 0 1 1
## 1148 1455 DL JFK DCA 0 1 0
## 1149 1455 RU EWR BWI 0 1 1
## 1150 1455 OH JFK BWI 0 2 0
## 1151 1455 DH JFK IAD 0 2 0
## 1152 1455 DL JFK DCA 0 2 0
## 1153 1455 RU EWR BWI 0 2 1
## 1154 1455 OH JFK BWI 0 3 0
## 1155 1455 DH JFK IAD 0 3 0
## 1156 1455 DL JFK DCA 0 3 0
## 1157 1455 RU EWR BWI 0 3 0
## 1158 1455 OH JFK BWI 0 4 0
## 1159 1455 DH LGA IAD 0 4 1
## 1160 1455 DH JFK IAD 0 4 0
## 1161 1455 DL JFK DCA 0 4 0
## 1162 1455 RU EWR BWI 0 4 0
## 1163 1455 OH JFK BWI 0 5 0
## 1164 1455 DH LGA IAD 0 5 1
## 1165 1455 DH JFK IAD 0 5 0
## 1166 1455 DL JFK DCA 0 5 1
## 1167 1455 RU EWR BWI 0 5 1
## 1168 1455 OH JFK BWI 0 6 0
## 1169 1455 DL JFK DCA 0 6 1
## 1170 1455 RU EWR BWI 0 6 0
## 1171 1455 OH JFK BWI 0 7 0
## 1172 1455 DH LGA IAD 0 7 1
## 1173 1455 DH JFK IAD 0 7 1
## 1174 1455 DL JFK DCA 0 7 1
## 1175 1455 RU EWR BWI 0 7 1
## 1176 1455 OH JFK BWI 0 1 0
## 1177 1455 DH LGA IAD 0 1 0
## 1178 1455 DH JFK IAD 0 1 0
## 1179 1455 DL JFK DCA 0 1 1
## 1180 1455 RU EWR BWI 0 1 0
## 1181 1455 OH JFK BWI 0 2 0
## 1182 1455 DH LGA IAD 0 2 0
## 1183 1455 DH JFK IAD 0 2 0
## 1184 1455 DL JFK DCA 0 2 1
## 1185 1455 RU EWR BWI 0 2 0
## 1186 1455 OH JFK BWI 0 3 0
## 1187 1455 DH LGA IAD 0 3 0
## 1188 1455 DH JFK IAD 0 3 0
## 1189 1455 DL JFK DCA 0 3 0
## 1190 1455 RU EWR BWI 0 3 0
## 1191 1455 OH JFK BWI 0 4 1
## 1192 1455 DH LGA IAD 0 4 1
## 1193 1455 DH JFK IAD 0 4 0
## 1194 1455 DL JFK DCA 0 4 0
## 1195 1455 RU EWR BWI 0 4 0
## 1196 1455 OH JFK BWI 0 5 1
## 1197 1455 DH JFK IAD 0 5 0
## 1198 1455 DL JFK DCA 0 5 0
## 1199 1455 RU EWR BWI 0 5 1
## 1200 1455 OH JFK BWI 0 6 0
## 1201 1455 DL JFK DCA 0 6 1
## 1202 1455 RU EWR BWI 0 6 0
## 1203 1455 OH JFK BWI 0 7 0
## 1204 1455 DH LGA IAD 0 7 0
## 1205 1455 DH JFK IAD 0 7 0
## 1206 1455 DL JFK DCA 0 7 1
## 1207 1455 RU EWR BWI 0 7 0
## 1208 1455 OH JFK BWI 0 1 0
## 1209 1455 DH LGA IAD 0 1 1
## 1210 1455 DH JFK IAD 0 1 1
## 1211 1455 DL JFK DCA 1 1 1
## 1212 1455 RU EWR BWI 0 1 0
## 1213 1455 OH JFK BWI 0 2 0
## 1214 1455 DH LGA IAD 1 2 1
## 1215 1455 DH JFK IAD 1 2 1
## 1216 1455 DL JFK DCA 0 2 1
## 1217 1455 OH JFK BWI 0 3 0
## 1218 1455 DH LGA IAD 0 3 1
## 1219 1455 DH JFK IAD 0 3 0
## 1220 1455 DL JFK DCA 0 3 0
## 1221 1455 RU EWR BWI 0 3 0
## 1222 1455 OH JFK BWI 0 4 0
## 1223 1455 DH LGA IAD 0 4 1
## 1224 1455 DH JFK IAD 0 4 0
## 1225 1455 DL JFK DCA 0 4 1
## 1226 1455 RU EWR BWI 0 4 0
## 1227 1455 OH JFK BWI 0 5 0
## 1228 1455 DH LGA IAD 0 5 1
## 1229 1455 DH JFK IAD 0 5 0
## 1230 1455 DL JFK DCA 0 5 1
## 1231 1455 RU EWR BWI 0 5 1
## 1232 1455 OH JFK BWI 0 6 0
## 1233 1455 DL JFK DCA 0 6 0
## 1234 1455 RU EWR BWI 0 6 0
## 1235 1500 MQ LGA DCA 0 4 0
## 1236 1500 US LGA DCA 0 4 0
## 1237 1500 MQ LGA DCA 0 5 0
## 1238 1500 US LGA DCA 0 5 0
## 1239 1500 US LGA DCA 0 6 0
## 1240 1500 MQ LGA DCA 0 7 1
## 1241 1500 US LGA DCA 0 7 0
## 1242 1500 US LGA DCA 0 1 0
## 1243 1500 MQ LGA DCA 0 2 1
## 1244 1500 US LGA DCA 0 2 0
## 1245 1500 RU EWR IAD 0 2 0
## 1246 1500 MQ LGA DCA 0 3 1
## 1247 1500 US LGA DCA 0 3 1
## 1248 1500 RU EWR IAD 0 3 1
## 1249 1500 MQ LGA DCA 0 4 0
## 1250 1500 US LGA DCA 0 4 0
## 1251 1500 RU EWR IAD 0 4 0
## 1252 1500 MQ LGA DCA 0 5 0
## 1253 1500 US LGA DCA 0 5 0
## 1254 1500 RU EWR IAD 0 5 0
## 1255 1500 US LGA DCA 0 6 0
## 1256 1500 RU EWR IAD 0 6 0
## 1257 1500 MQ LGA DCA 0 7 0
## 1258 1500 US LGA DCA 0 7 0
## 1259 1500 RU EWR IAD 0 7 0
## 1260 1500 MQ LGA DCA 0 1 0
## 1261 1500 US LGA DCA 0 1 0
## 1262 1500 RU EWR IAD 0 1 0
## 1263 1500 MQ LGA DCA 0 2 0
## 1264 1500 US LGA DCA 0 2 0
## 1265 1500 RU EWR IAD 0 2 0
## 1266 1500 MQ LGA DCA 0 3 0
## 1267 1500 US LGA DCA 0 3 0
## 1268 1500 RU EWR IAD 0 3 0
## 1269 1500 MQ LGA DCA 0 4 0
## 1270 1500 US LGA DCA 0 4 0
## 1271 1500 RU EWR IAD 0 4 0
## 1272 1500 US LGA DCA 0 5 0
## 1273 1500 RU EWR IAD 0 5 1
## 1274 1500 US LGA DCA 0 6 0
## 1275 1500 RU EWR IAD 0 6 0
## 1276 1500 MQ LGA DCA 0 7 1
## 1277 1500 RU EWR IAD 0 7 1
## 1278 1500 MQ LGA DCA 0 1 1
## 1279 1500 US LGA DCA 0 1 0
## 1280 1500 RU EWR IAD 0 1 0
## 1281 1500 MQ LGA DCA 0 2 0
## 1282 1500 US LGA DCA 0 2 0
## 1283 1500 RU EWR IAD 0 2 0
## 1284 1500 MQ LGA DCA 0 3 0
## 1285 1500 US LGA DCA 0 3 0
## 1286 1500 RU EWR IAD 0 3 1
## 1287 1500 MQ LGA DCA 0 4 0
## 1288 1500 US LGA DCA 0 4 0
## 1289 1500 RU EWR IAD 0 4 0
## 1290 1500 US LGA DCA 0 5 0
## 1291 1500 RU EWR IAD 0 5 0
## 1292 1500 US LGA DCA 0 6 0
## 1293 1500 RU EWR IAD 0 6 0
## 1294 1500 MQ LGA DCA 0 7 1
## 1295 1500 US LGA DCA 0 7 0
## 1296 1500 RU EWR IAD 0 7 0
## 1297 1500 RU EWR IAD 0 1 1
## 1298 1500 MQ LGA DCA 0 2 0
## 1299 1500 US LGA DCA 0 2 0
## 1300 1500 RU EWR IAD 0 2 1
## 1301 1500 MQ LGA DCA 0 3 0
## 1302 1500 US LGA DCA 0 3 1
## 1303 1500 RU EWR IAD 0 3 0
## 1304 1500 MQ LGA DCA 0 4 1
## 1305 1500 US LGA DCA 0 4 0
## 1306 1500 RU EWR IAD 0 4 0
## 1307 1500 MQ LGA DCA 0 5 0
## 1308 1500 US LGA DCA 0 5 0
## 1309 1500 RU EWR IAD 0 5 1
## 1310 1500 US LGA DCA 0 6 0
## 1311 1500 RU EWR IAD 0 6 0
## 1312 1515 RU EWR IAD 0 4 0
## 1313 1515 RU EWR IAD 0 5 1
## 1314 1515 RU EWR IAD 0 6 0
## 1315 1515 RU EWR IAD 0 7 1
## 1316 1515 RU EWR IAD 0 1 1
## 1317 1520 MQ JFK DCA 0 6 0
## 1318 1525 RU EWR DCA 0 4 0
## 1319 1525 RU EWR DCA 0 5 0
## 1320 1525 RU EWR DCA 0 1 1
## 1321 1525 RU EWR DCA 0 2 1
## 1322 1525 RU EWR DCA 0 3 0
## 1323 1525 RU EWR DCA 0 4 0
## 1324 1525 RU EWR DCA 0 5 0
## 1325 1525 RU EWR DCA 0 1 0
## 1326 1525 RU EWR DCA 0 2 0
## 1327 1525 RU EWR DCA 0 3 0
## 1328 1525 RU EWR DCA 0 4 0
## 1329 1525 RU EWR DCA 0 5 1
## 1330 1525 RU EWR DCA 0 1 0
## 1331 1525 RU EWR DCA 0 2 1
## 1332 1525 RU EWR DCA 0 3 1
## 1333 1525 RU EWR DCA 0 4 0
## 1334 1525 RU EWR DCA 0 5 1
## 1335 1525 RU EWR DCA 1 1 1
## 1336 1525 RU EWR DCA 0 3 0
## 1337 1525 RU EWR DCA 0 4 1
## 1338 1525 RU EWR DCA 0 5 1
## 1339 1530 MQ JFK DCA 0 4 0
## 1340 1530 MQ JFK DCA 0 5 0
## 1341 1530 MQ JFK DCA 0 6 1
## 1342 1530 MQ JFK DCA 0 7 1
## 1343 1530 MQ JFK DCA 0 1 0
## 1344 1530 DL LGA DCA 0 2 0
## 1345 1530 MQ JFK DCA 0 2 0
## 1346 1530 DL LGA DCA 0 3 0
## 1347 1530 MQ JFK DCA 0 3 0
## 1348 1530 DL LGA DCA 0 4 0
## 1349 1530 MQ JFK DCA 0 4 0
## 1350 1530 DL LGA DCA 0 5 0
## 1351 1530 MQ JFK DCA 0 5 0
## 1352 1530 MQ JFK DCA 0 6 0
## 1353 1530 DL LGA DCA 0 7 0
## 1354 1530 MQ JFK DCA 0 7 0
## 1355 1530 DL LGA DCA 0 1 0
## 1356 1530 MQ JFK DCA 0 1 0
## 1357 1530 DL LGA DCA 0 2 0
## 1358 1530 MQ JFK DCA 0 2 0
## 1359 1530 DL LGA DCA 0 3 1
## 1360 1530 MQ JFK DCA 0 3 0
## 1361 1530 DL LGA DCA 0 4 0
## 1362 1530 MQ JFK DCA 0 4 0
## 1363 1530 DL LGA DCA 0 5 0
## 1364 1530 MQ JFK DCA 0 5 0
## 1365 1530 MQ JFK DCA 0 6 0
## 1366 1530 MQ JFK DCA 0 7 1
## 1367 1530 DL LGA DCA 0 1 0
## 1368 1530 MQ JFK DCA 0 1 0
## 1369 1530 DL LGA DCA 0 2 0
## 1370 1530 MQ JFK DCA 0 2 0
## 1371 1530 DL LGA DCA 0 3 0
## 1372 1530 MQ JFK DCA 0 3 0
## 1373 1530 DL LGA DCA 0 4 0
## 1374 1530 MQ JFK DCA 0 4 0
## 1375 1530 DL LGA DCA 0 5 0
## 1376 1530 MQ JFK DCA 0 5 1
## 1377 1530 MQ JFK DCA 0 6 0
## 1378 1530 DL LGA DCA 0 7 0
## 1379 1530 MQ JFK DCA 0 7 1
## 1380 1530 DL LGA DCA 1 1 1
## 1381 1530 MQ JFK DCA 1 1 1
## 1382 1530 MQ JFK DCA 0 2 1
## 1383 1530 DL LGA DCA 0 3 0
## 1384 1530 MQ JFK DCA 0 3 0
## 1385 1530 DL LGA DCA 0 4 0
## 1386 1530 MQ JFK DCA 0 4 1
## 1387 1530 DL LGA DCA 0 5 0
## 1388 1530 MQ JFK DCA 0 5 0
## 1389 1600 RU EWR DCA 0 6 0
## 1390 1600 US LGA DCA 0 7 0
## 1391 1600 MQ LGA DCA 0 1 1
## 1392 1600 US LGA DCA 0 1 0
## 1393 1600 MQ LGA DCA 0 2 0
## 1394 1600 US LGA DCA 0 2 0
## 1395 1600 MQ LGA DCA 0 3 1
## 1396 1600 US LGA DCA 0 3 1
## 1397 1600 MQ LGA DCA 0 4 0
## 1398 1600 US LGA DCA 0 4 0
## 1399 1600 MQ LGA DCA 0 5 1
## 1400 1600 US LGA DCA 0 5 0
## 1401 1600 RU EWR DCA 0 6 0
## 1402 1600 US LGA DCA 0 7 0
## 1403 1600 MQ LGA DCA 0 1 0
## 1404 1600 US LGA DCA 0 1 0
## 1405 1600 MQ LGA DCA 0 2 1
## 1406 1600 US LGA DCA 0 2 1
## 1407 1600 MQ LGA DCA 0 3 0
## 1408 1600 US LGA DCA 0 3 0
## 1409 1600 MQ LGA DCA 0 4 1
## 1410 1600 US LGA DCA 0 4 0
## 1411 1600 MQ LGA DCA 0 5 1
## 1412 1600 US LGA DCA 0 5 0
## 1413 1600 RU EWR DCA 0 6 0
## 1414 1600 US LGA DCA 0 7 1
## 1415 1600 MQ LGA DCA 0 1 0
## 1416 1600 US LGA DCA 0 1 0
## 1417 1600 MQ LGA DCA 0 2 0
## 1418 1600 US LGA DCA 0 2 0
## 1419 1600 MQ LGA DCA 0 3 0
## 1420 1600 US LGA DCA 0 3 0
## 1421 1600 MQ LGA DCA 0 4 0
## 1422 1600 US LGA DCA 0 4 0
## 1423 1600 RU EWR DCA 0 6 0
## 1424 1600 US LGA DCA 0 7 0
## 1425 1600 US LGA DCA 0 1 0
## 1426 1600 MQ LGA DCA 1 2 1
## 1427 1600 US LGA DCA 0 2 0
## 1428 1600 MQ LGA DCA 0 3 0
## 1429 1600 US LGA DCA 0 3 1
## 1430 1600 US LGA DCA 0 4 0
## 1431 1600 MQ LGA DCA 0 5 1
## 1432 1600 US LGA DCA 0 5 0
## 1433 1600 RU EWR DCA 0 6 0
## 1434 1605 RU EWR BWI 0 7 1
## 1435 1610 DH JFK IAD 0 5 0
## 1436 1610 DH JFK IAD 0 6 0
## 1437 1610 DH JFK IAD 0 7 0
## 1438 1610 DH JFK IAD 0 1 1
## 1439 1610 DH JFK IAD 0 2 0
## 1440 1610 DH JFK IAD 0 3 0
## 1441 1610 DH JFK IAD 0 4 0
## 1442 1610 DH JFK IAD 0 5 0
## 1443 1610 DH JFK IAD 0 7 0
## 1444 1610 DH JFK IAD 0 2 1
## 1445 1610 DH JFK IAD 0 3 0
## 1446 1610 DH JFK IAD 0 4 0
## 1447 1610 DH JFK IAD 0 5 0
## 1448 1610 DH JFK IAD 0 7 1
## 1449 1610 DH JFK IAD 0 1 0
## 1450 1610 DH JFK IAD 0 2 0
## 1451 1610 DH JFK IAD 0 3 0
## 1452 1610 DH JFK IAD 0 4 0
## 1453 1610 DH JFK IAD 0 5 0
## 1454 1610 DH JFK IAD 0 7 0
## 1455 1610 DH JFK IAD 0 1 0
## 1456 1610 DH JFK IAD 0 3 0
## 1457 1610 DH JFK IAD 0 4 0
## 1458 1610 DH JFK IAD 0 5 0
## 1459 1630 RU EWR DCA 0 4 0
## 1460 1630 RU EWR DCA 0 5 0
## 1461 1630 DL LGA DCA 0 6 0
## 1462 1630 DL LGA DCA 0 7 0
## 1463 1630 CO EWR DCA 0 7 1
## 1464 1630 DL LGA DCA 0 1 0
## 1465 1630 DL LGA DCA 0 2 0
## 1466 1630 RU EWR DCA 0 2 0
## 1467 1630 DL LGA DCA 0 3 0
## 1468 1630 RU EWR DCA 0 3 0
## 1469 1630 DL LGA DCA 0 4 0
## 1470 1630 RU EWR DCA 0 4 0
## 1471 1630 DL LGA DCA 0 5 0
## 1472 1630 RU EWR DCA 0 5 0
## 1473 1630 DL LGA DCA 0 6 0
## 1474 1630 DL LGA DCA 0 7 0
## 1475 1630 CO EWR DCA 0 7 0
## 1476 1630 DL LGA DCA 0 1 0
## 1477 1630 RU EWR DCA 0 1 0
## 1478 1630 DL LGA DCA 0 2 1
## 1479 1630 RU EWR DCA 0 2 0
## 1480 1630 DL LGA DCA 0 3 0
## 1481 1630 RU EWR DCA 0 3 0
## 1482 1630 DL LGA DCA 0 4 0
## 1483 1630 RU EWR DCA 0 4 0
## 1484 1630 DL LGA DCA 0 5 0
## 1485 1630 RU EWR DCA 0 5 1
## 1486 1630 DL LGA DCA 0 6 1
## 1487 1630 DL LGA DCA 0 7 0
## 1488 1630 CO EWR DCA 0 7 1
## 1489 1630 DL LGA DCA 0 1 0
## 1490 1630 RU EWR DCA 0 1 0
## 1491 1630 DL LGA DCA 0 2 1
## 1492 1630 RU EWR DCA 0 2 0
## 1493 1630 DL LGA DCA 0 3 1
## 1494 1630 RU EWR DCA 0 3 1
## 1495 1630 DL LGA DCA 0 4 1
## 1496 1630 RU EWR DCA 0 4 0
## 1497 1630 DL LGA DCA 0 5 0
## 1498 1630 RU EWR DCA 0 5 0
## 1499 1630 DL LGA DCA 0 6 0
## 1500 1630 DL LGA DCA 0 7 0
## 1501 1630 CO EWR DCA 0 7 0
## 1502 1630 DL LGA DCA 0 1 0
## 1503 1630 DL LGA DCA 0 2 1
## 1504 1630 RU EWR DCA 0 3 0
## 1505 1630 DL LGA DCA 0 4 0
## 1506 1630 RU EWR DCA 0 4 0
## 1507 1630 DL LGA DCA 0 5 0
## 1508 1630 RU EWR DCA 0 5 0
## 1509 1630 DL LGA DCA 0 6 0
## 1510 1640 DH JFK DCA 0 4 0
## 1511 1640 DH JFK DCA 0 5 0
## 1512 1640 DH JFK DCA 0 7 0
## 1513 1640 DH JFK DCA 0 1 1
## 1514 1640 DH JFK DCA 0 3 0
## 1515 1640 DH JFK DCA 0 4 1
## 1516 1640 DH JFK DCA 0 5 0
## 1517 1640 DH JFK DCA 0 6 1
## 1518 1640 DH JFK DCA 0 7 0
## 1519 1640 DH JFK DCA 0 1 0
## 1520 1640 DH JFK DCA 0 2 0
## 1521 1640 DH JFK DCA 0 3 0
## 1522 1640 DH JFK DCA 0 4 0
## 1523 1640 DH JFK DCA 0 5 0
## 1524 1640 DH JFK DCA 0 6 0
## 1525 1640 DH JFK DCA 0 7 1
## 1526 1640 DH JFK DCA 0 1 0
## 1527 1640 DH JFK DCA 0 2 0
## 1528 1640 DH JFK DCA 0 4 0
## 1529 1640 DH JFK DCA 0 5 0
## 1530 1640 DH JFK DCA 0 6 0
## 1531 1640 DH JFK DCA 0 7 0
## 1532 1640 DH JFK DCA 0 2 1
## 1533 1640 DH JFK DCA 0 3 0
## 1534 1640 DH JFK DCA 0 4 0
## 1535 1640 DH JFK DCA 0 5 0
## 1536 1640 DH JFK DCA 0 6 0
## 1537 1645 DH JFK IAD 0 4 0
## 1538 1645 DH JFK IAD 0 5 0
## 1539 1645 DH JFK IAD 0 6 0
## 1540 1645 DH JFK IAD 0 7 0
## 1541 1645 DH JFK IAD 0 1 0
## 1542 1645 DH JFK IAD 0 2 0
## 1543 1645 DH JFK IAD 0 3 0
## 1544 1645 DH JFK IAD 0 4 0
## 1545 1645 DH JFK IAD 0 5 0
## 1546 1645 DH JFK IAD 0 6 0
## 1547 1645 DH JFK IAD 0 7 0
## 1548 1645 DH JFK IAD 0 1 0
## 1549 1645 DH JFK IAD 0 2 0
## 1550 1645 DH JFK IAD 0 3 0
## 1551 1645 DH JFK IAD 0 4 0
## 1552 1645 DH JFK IAD 0 5 0
## 1553 1645 DH JFK IAD 0 6 0
## 1554 1645 DH JFK IAD 0 7 0
## 1555 1645 DH JFK IAD 0 1 0
## 1556 1645 DH JFK IAD 0 2 0
## 1557 1645 DH JFK IAD 0 3 0
## 1558 1645 DH JFK IAD 0 4 0
## 1559 1645 DH JFK IAD 0 5 0
## 1560 1645 DH JFK IAD 0 6 0
## 1561 1645 DH JFK IAD 0 7 0
## 1562 1645 DH JFK IAD 0 1 1
## 1563 1645 DH JFK IAD 0 3 0
## 1564 1645 DH JFK IAD 0 4 0
## 1565 1645 DH JFK IAD 0 5 0
## 1566 1645 DH JFK IAD 0 6 0
## 1567 1700 US LGA DCA 0 4 0
## 1568 1700 RU EWR IAD 0 4 0
## 1569 1700 US LGA DCA 0 5 0
## 1570 1700 RU EWR IAD 0 5 0
## 1571 1700 US LGA DCA 0 6 0
## 1572 1700 MQ LGA DCA 0 7 0
## 1573 1700 US LGA DCA 0 7 0
## 1574 1700 MQ LGA DCA 0 1 0
## 1575 1700 US LGA DCA 0 1 0
## 1576 1700 MQ LGA DCA 0 2 0
## 1577 1700 US LGA DCA 0 2 0
## 1578 1700 RU EWR IAD 0 2 0
## 1579 1700 US LGA DCA 0 3 0
## 1580 1700 RU EWR IAD 0 3 0
## 1581 1700 US LGA DCA 0 4 1
## 1582 1700 RU EWR IAD 0 4 0
## 1583 1700 MQ LGA DCA 0 5 0
## 1584 1700 US LGA DCA 0 5 0
## 1585 1700 RU EWR IAD 0 5 0
## 1586 1700 US LGA DCA 0 6 0
## 1587 1700 RU EWR IAD 0 6 0
## 1588 1700 MQ LGA DCA 0 7 0
## 1589 1700 US LGA DCA 0 7 0
## 1590 1700 RU EWR IAD 0 7 0
## 1591 1700 MQ LGA DCA 0 1 0
## 1592 1700 US LGA DCA 0 1 1
## 1593 1700 RU EWR IAD 0 1 0
## 1594 1700 MQ LGA DCA 0 2 1
## 1595 1700 US LGA DCA 0 2 0
## 1596 1700 RU EWR IAD 0 2 0
## 1597 1700 MQ LGA DCA 0 3 0
## 1598 1700 US LGA DCA 0 3 0
## 1599 1700 RU EWR IAD 0 3 0
## 1600 1700 MQ LGA DCA 0 4 1
## 1601 1700 US LGA DCA 0 4 0
## 1602 1700 MQ LGA DCA 0 5 1
## 1603 1700 US LGA DCA 0 5 0
## 1604 1700 RU EWR IAD 0 5 1
## 1605 1700 US LGA DCA 0 6 0
## 1606 1700 RU EWR IAD 0 6 0
## 1607 1700 MQ LGA DCA 0 7 1
## 1608 1700 MQ LGA DCA 0 1 0
## 1609 1700 US LGA DCA 0 1 0
## 1610 1700 RU EWR IAD 0 1 0
## 1611 1700 US LGA DCA 0 2 0
## 1612 1700 RU EWR IAD 0 2 0
## 1613 1700 MQ LGA DCA 0 3 0
## 1614 1700 US LGA DCA 0 3 0
## 1615 1700 RU EWR IAD 0 3 0
## 1616 1700 MQ LGA DCA 0 4 0
## 1617 1700 US LGA DCA 0 4 0
## 1618 1700 RU EWR IAD 0 4 0
## 1619 1700 MQ LGA DCA 0 5 0
## 1620 1700 US LGA DCA 0 5 0
## 1621 1700 RU EWR IAD 0 5 0
## 1622 1700 US LGA DCA 0 6 0
## 1623 1700 RU EWR IAD 0 6 0
## 1624 1700 MQ LGA DCA 0 7 0
## 1625 1700 US LGA DCA 0 7 0
## 1626 1700 RU EWR IAD 0 7 0
## 1627 1700 US LGA DCA 0 1 0
## 1628 1700 RU EWR IAD 0 1 1
## 1629 1700 US LGA DCA 0 2 0
## 1630 1700 MQ LGA DCA 0 3 1
## 1631 1700 US LGA DCA 0 3 0
## 1632 1700 RU EWR IAD 0 3 0
## 1633 1700 MQ LGA DCA 0 4 0
## 1634 1700 US LGA DCA 0 4 0
## 1635 1700 RU EWR IAD 0 4 0
## 1636 1700 MQ LGA DCA 0 5 0
## 1637 1700 US LGA DCA 0 5 1
## 1638 1700 RU EWR IAD 0 5 1
## 1639 1700 US LGA DCA 0 6 0
## 1640 1700 RU EWR IAD 0 6 0
## 1641 1710 DH EWR IAD 0 4 0
## 1642 1710 DH EWR IAD 0 6 0
## 1643 1710 DH EWR IAD 0 7 1
## 1644 1710 DH EWR IAD 0 1 1
## 1645 1710 DH EWR IAD 0 2 0
## 1646 1710 DH EWR IAD 0 3 0
## 1647 1710 DH EWR IAD 0 4 0
## 1648 1710 DH EWR IAD 0 5 0
## 1649 1710 DH EWR IAD 0 6 0
## 1650 1710 DH EWR IAD 0 7 0
## 1651 1710 DH EWR IAD 0 1 0
## 1652 1710 DH EWR IAD 0 2 0
## 1653 1710 DH EWR IAD 0 3 0
## 1654 1710 DH EWR IAD 0 5 0
## 1655 1710 DH EWR IAD 0 6 0
## 1656 1710 DH EWR IAD 0 7 1
## 1657 1710 DH EWR IAD 0 1 0
## 1658 1710 DH EWR IAD 0 2 0
## 1659 1710 DH EWR IAD 0 3 1
## 1660 1710 DH EWR IAD 0 4 0
## 1661 1710 DH EWR IAD 0 5 1
## 1662 1710 DH EWR IAD 0 6 0
## 1663 1710 DH EWR IAD 0 7 0
## 1664 1710 DH EWR IAD 1 2 1
## 1665 1710 DH EWR IAD 0 3 1
## 1666 1710 DH EWR IAD 0 4 0
## 1667 1710 DH EWR IAD 0 5 0
## 1668 1710 DH EWR IAD 0 6 0
## 1669 1715 DH LGA IAD 0 4 0
## 1670 1715 DH JFK IAD 0 4 0
## 1671 1715 DH LGA IAD 0 5 0
## 1672 1715 DH JFK IAD 0 5 0
## 1673 1715 DH LGA IAD 0 6 0
## 1674 1715 DH JFK IAD 0 6 0
## 1675 1715 DH LGA IAD 0 7 1
## 1676 1715 DH JFK IAD 0 7 0
## 1677 1715 DH LGA IAD 0 1 1
## 1678 1715 DH JFK IAD 0 1 0
## 1679 1715 DH LGA IAD 0 2 0
## 1680 1715 DH JFK IAD 0 2 1
## 1681 1715 DH LGA IAD 0 3 1
## 1682 1715 DH JFK IAD 0 3 1
## 1683 1715 DH LGA IAD 0 4 1
## 1684 1715 DH JFK IAD 0 4 0
## 1685 1715 DH LGA IAD 0 5 1
## 1686 1715 DH JFK IAD 0 5 0
## 1687 1715 DH LGA IAD 0 6 0
## 1688 1715 DH JFK IAD 0 6 0
## 1689 1715 DH LGA IAD 0 7 0
## 1690 1715 DH JFK IAD 0 7 0
## 1691 1715 DH LGA IAD 0 1 0
## 1692 1715 DH JFK IAD 0 1 0
## 1693 1715 DH LGA IAD 0 2 1
## 1694 1715 DH JFK IAD 0 2 0
## 1695 1715 DH LGA IAD 0 3 0
## 1696 1715 DH JFK IAD 0 3 0
## 1697 1715 DH JFK IAD 0 4 0
## 1698 1715 DH LGA IAD 0 5 1
## 1699 1715 DH JFK IAD 0 5 0
## 1700 1715 DH LGA IAD 0 6 0
## 1701 1715 DH JFK IAD 0 6 1
## 1702 1715 DH LGA IAD 0 7 1
## 1703 1715 DH JFK IAD 0 7 1
## 1704 1715 DH LGA IAD 0 1 0
## 1705 1715 DH JFK IAD 0 1 0
## 1706 1715 DH LGA IAD 0 2 0
## 1707 1715 DH JFK IAD 0 2 0
## 1708 1715 DH LGA IAD 0 3 0
## 1709 1715 DH JFK IAD 0 3 0
## 1710 1715 DH LGA IAD 0 4 0
## 1711 1715 DH JFK IAD 0 4 0
## 1712 1715 DH LGA IAD 0 5 0
## 1713 1715 DH JFK IAD 0 5 0
## 1714 1715 DH LGA IAD 0 6 0
## 1715 1715 DH JFK IAD 0 6 1
## 1716 1715 DH LGA IAD 0 7 1
## 1717 1715 DH JFK IAD 0 7 1
## 1718 1715 DH LGA IAD 0 1 1
## 1719 1715 DH JFK IAD 0 1 1
## 1720 1715 DH LGA IAD 1 2 1
## 1721 1715 DH JFK IAD 1 2 1
## 1722 1715 DH LGA IAD 0 3 0
## 1723 1715 DH JFK IAD 0 3 1
## 1724 1715 DH LGA IAD 0 4 1
## 1725 1715 DH JFK IAD 0 4 0
## 1726 1715 DH LGA IAD 0 5 0
## 1727 1715 DH JFK IAD 0 5 0
## 1728 1715 DH LGA IAD 0 6 0
## 1729 1715 DH JFK IAD 0 6 0
## 1730 1720 RU EWR BWI 0 4 0
## 1731 1720 RU EWR BWI 0 5 0
## 1732 1720 RU EWR BWI 0 6 0
## 1733 1720 RU EWR BWI 0 2 1
## 1734 1720 RU EWR BWI 0 3 1
## 1735 1720 RU EWR BWI 0 4 0
## 1736 1720 RU EWR BWI 0 5 0
## 1737 1720 RU EWR BWI 0 6 0
## 1738 1720 RU EWR BWI 0 7 0
## 1739 1720 RU EWR BWI 0 1 0
## 1740 1720 RU EWR BWI 0 2 1
## 1741 1720 RU EWR BWI 0 3 0
## 1742 1720 RU EWR BWI 0 4 1
## 1743 1720 RU EWR BWI 0 5 1
## 1744 1720 RU EWR BWI 0 6 0
## 1745 1720 RU EWR BWI 0 1 0
## 1746 1720 RU EWR BWI 0 2 1
## 1747 1720 RU EWR BWI 0 3 1
## 1748 1720 RU EWR BWI 0 4 1
## 1749 1720 RU EWR BWI 0 5 0
## 1750 1720 RU EWR BWI 0 6 0
## 1751 1720 RU EWR BWI 0 7 0
## 1752 1720 RU EWR BWI 0 1 1
## 1753 1720 RU EWR BWI 0 3 1
## 1754 1720 RU EWR BWI 0 4 0
## 1755 1720 RU EWR BWI 0 5 1
## 1756 1720 RU EWR BWI 0 6 0
## 1757 1725 RU EWR IAD 0 6 0
## 1758 1730 DL LGA DCA 0 4 0
## 1759 1730 CO EWR DCA 0 4 0
## 1760 1730 DL LGA DCA 0 5 0
## 1761 1730 CO EWR DCA 0 5 0
## 1762 1730 RU EWR DCA 0 6 0
## 1763 1730 RU EWR DCA 0 7 1
## 1764 1730 DL LGA DCA 0 1 0
## 1765 1730 CO EWR DCA 0 1 1
## 1766 1730 DL LGA DCA 0 2 0
## 1767 1730 CO EWR DCA 0 2 1
## 1768 1730 DL LGA DCA 0 3 0
## 1769 1730 CO EWR DCA 0 3 1
## 1770 1730 DL LGA DCA 0 4 0
## 1771 1730 CO EWR DCA 0 4 0
## 1772 1730 DL LGA DCA 0 5 0
## 1773 1730 CO EWR DCA 0 5 0
## 1774 1730 RU EWR DCA 0 6 0
## 1775 1730 DL LGA DCA 0 7 0
## 1776 1730 RU EWR DCA 0 7 0
## 1777 1730 DL LGA DCA 0 1 0
## 1778 1730 CO EWR DCA 0 1 1
## 1779 1730 DL LGA DCA 0 2 0
## 1780 1730 CO EWR DCA 0 2 1
## 1781 1730 DL LGA DCA 0 3 0
## 1782 1730 CO EWR DCA 0 3 1
## 1783 1730 DL LGA DCA 0 4 0
## 1784 1730 DL LGA DCA 0 5 0
## 1785 1730 CO EWR DCA 0 5 1
## 1786 1730 RU EWR DCA 0 6 0
## 1787 1730 CO EWR DCA 0 1 1
## 1788 1730 DL LGA DCA 0 2 0
## 1789 1730 CO EWR DCA 0 2 0
## 1790 1730 DL LGA DCA 0 3 0
## 1791 1730 CO EWR DCA 0 3 1
## 1792 1730 DL LGA DCA 0 4 1
## 1793 1730 CO EWR DCA 0 4 1
## 1794 1730 DL LGA DCA 0 5 0
## 1795 1730 CO EWR DCA 0 5 0
## 1796 1730 RU EWR DCA 0 6 0
## 1797 1730 DL LGA DCA 0 7 0
## 1798 1730 RU EWR DCA 0 7 0
## 1799 1730 DL LGA DCA 0 1 0
## 1800 1730 CO EWR DCA 1 2 1
## 1801 1730 DL LGA DCA 0 3 0
## 1802 1730 CO EWR DCA 0 3 0
## 1803 1730 DL LGA DCA 0 4 0
## 1804 1730 CO EWR DCA 0 4 0
## 1805 1730 DL LGA DCA 0 5 0
## 1806 1730 CO EWR DCA 0 5 0
## 1807 1730 RU EWR DCA 0 6 0
## 1808 1800 US LGA DCA 0 7 0
## 1809 1800 US LGA DCA 0 1 0
## 1810 1800 US LGA DCA 0 2 0
## 1811 1800 US LGA DCA 0 3 0
## 1812 1800 US LGA DCA 0 4 0
## 1813 1800 US LGA DCA 0 5 0
## 1814 1800 DH JFK IAD 0 6 0
## 1815 1800 US LGA DCA 0 7 0
## 1816 1800 US LGA DCA 0 1 0
## 1817 1800 US LGA DCA 0 2 0
## 1818 1800 US LGA DCA 0 3 0
## 1819 1800 US LGA DCA 0 4 0
## 1820 1800 US LGA DCA 0 5 0
## 1821 1800 DH JFK IAD 0 6 1
## 1822 1800 US LGA DCA 0 7 0
## 1823 1800 US LGA DCA 0 1 0
## 1824 1800 US LGA DCA 0 2 0
## 1825 1800 US LGA DCA 0 3 0
## 1826 1800 US LGA DCA 0 4 0
## 1827 1800 US LGA DCA 0 5 0
## 1828 1800 DH JFK IAD 0 6 0
## 1829 1800 US LGA DCA 0 7 0
## 1830 1800 US LGA DCA 0 1 0
## 1831 1800 US LGA DCA 0 3 0
## 1832 1800 US LGA DCA 0 4 0
## 1833 1800 US LGA DCA 0 5 0
## 1834 1800 DH JFK IAD 0 6 0
## 1835 1830 MQ JFK DCA 0 4 0
## 1836 1830 MQ JFK DCA 0 5 0
## 1837 1830 DL LGA DCA 0 6 0
## 1838 1830 MQ JFK DCA 0 6 0
## 1839 1830 DL LGA DCA 0 7 0
## 1840 1830 MQ JFK DCA 0 7 1
## 1841 1830 DL LGA DCA 0 1 0
## 1842 1830 DL LGA DCA 0 2 0
## 1843 1830 MQ JFK DCA 0 2 0
## 1844 1830 DL LGA DCA 0 3 0
## 1845 1830 MQ JFK DCA 0 3 1
## 1846 1830 DL LGA DCA 0 4 0
## 1847 1830 MQ JFK DCA 0 4 0
## 1848 1830 DL LGA DCA 0 5 0
## 1849 1830 MQ JFK DCA 0 5 1
## 1850 1830 DL LGA DCA 0 6 0
## 1851 1830 MQ JFK DCA 0 6 0
## 1852 1830 DL LGA DCA 0 7 0
## 1853 1830 MQ JFK DCA 0 7 1
## 1854 1830 DL LGA DCA 0 1 0
## 1855 1830 MQ JFK DCA 0 1 0
## 1856 1830 DL LGA DCA 0 2 0
## 1857 1830 MQ JFK DCA 0 2 1
## 1858 1830 DL LGA DCA 0 3 0
## 1859 1830 MQ JFK DCA 0 3 0
## 1860 1830 DL LGA DCA 0 4 0
## 1861 1830 MQ JFK DCA 0 4 0
## 1862 1830 DL LGA DCA 0 5 0
## 1863 1830 MQ JFK DCA 0 5 1
## 1864 1830 DL LGA DCA 0 6 0
## 1865 1830 MQ JFK DCA 0 6 0
## 1866 1830 DL LGA DCA 0 7 1
## 1867 1830 MQ JFK DCA 0 7 1
## 1868 1830 DL LGA DCA 0 1 0
## 1869 1830 MQ JFK DCA 0 1 1
## 1870 1830 DL LGA DCA 0 2 0
## 1871 1830 MQ JFK DCA 0 2 0
## 1872 1830 DL LGA DCA 0 3 0
## 1873 1830 MQ JFK DCA 0 3 0
## 1874 1830 DL LGA DCA 0 4 0
## 1875 1830 MQ JFK DCA 0 4 0
## 1876 1830 DL LGA DCA 0 5 0
## 1877 1830 MQ JFK DCA 0 5 0
## 1878 1830 DL LGA DCA 0 6 0
## 1879 1830 MQ JFK DCA 0 6 0
## 1880 1830 DL LGA DCA 0 7 0
## 1881 1830 MQ JFK DCA 0 7 0
## 1882 1830 MQ JFK DCA 1 1 1
## 1883 1830 DL LGA DCA 0 2 1
## 1884 1830 MQ JFK DCA 1 2 1
## 1885 1830 DL LGA DCA 0 3 0
## 1886 1830 MQ JFK DCA 0 3 0
## 1887 1830 DL LGA DCA 0 4 0
## 1888 1830 MQ JFK DCA 0 4 0
## 1889 1830 DL LGA DCA 0 5 0
## 1890 1830 MQ JFK DCA 0 5 0
## 1891 1830 DL LGA DCA 0 6 0
## 1892 1830 MQ JFK DCA 0 6 0
## 1893 1900 MQ LGA DCA 0 4 0
## 1894 1900 RU EWR IAD 0 4 0
## 1895 1900 RU EWR DCA 0 4 0
## 1896 1900 US LGA DCA 0 5 0
## 1897 1900 RU EWR IAD 0 5 0
## 1898 1900 RU EWR DCA 0 5 0
## 1899 1900 US LGA DCA 0 6 0
## 1900 1900 MQ LGA DCA 0 7 1
## 1901 1900 US LGA DCA 0 7 0
## 1902 1900 RU EWR IAD 0 7 1
## 1903 1900 RU EWR DCA 0 7 1
## 1904 1900 MQ LGA DCA 0 1 1
## 1905 1900 US LGA DCA 0 1 0
## 1906 1900 RU EWR DCA 0 1 1
## 1907 1900 MQ LGA DCA 0 2 0
## 1908 1900 US LGA DCA 0 2 0
## 1909 1900 CO EWR DCA 0 2 1
## 1910 1900 RU EWR IAD 0 2 1
## 1911 1900 MQ LGA DCA 0 3 1
## 1912 1900 US LGA DCA 0 3 0
## 1913 1900 CO EWR DCA 0 3 1
## 1914 1900 RU EWR IAD 0 3 1
## 1915 1900 MQ LGA DCA 0 4 0
## 1916 1900 US LGA DCA 0 4 1
## 1917 1900 CO EWR DCA 0 4 0
## 1918 1900 RU EWR IAD 0 4 0
## 1919 1900 MQ LGA DCA 0 5 1
## 1920 1900 US LGA DCA 0 5 0
## 1921 1900 CO EWR DCA 0 5 0
## 1922 1900 RU EWR IAD 0 5 0
## 1923 1900 US LGA DCA 0 6 0
## 1924 1900 MQ LGA DCA 0 7 0
## 1925 1900 US LGA DCA 0 7 0
## 1926 1900 CO EWR DCA 0 7 0
## 1927 1900 RU EWR IAD 0 7 0
## 1928 1900 MQ LGA DCA 0 1 0
## 1929 1900 US LGA DCA 0 1 0
## 1930 1900 CO EWR DCA 0 1 0
## 1931 1900 RU EWR IAD 0 1 0
## 1932 1900 MQ LGA DCA 0 2 1
## 1933 1900 US LGA DCA 0 2 0
## 1934 1900 CO EWR DCA 0 2 1
## 1935 1900 RU EWR IAD 0 2 1
## 1936 1900 MQ LGA DCA 0 3 0
## 1937 1900 US LGA DCA 0 3 0
## 1938 1900 CO EWR DCA 0 3 0
## 1939 1900 RU EWR IAD 0 3 0
## 1940 1900 MQ LGA DCA 0 4 1
## 1941 1900 US LGA DCA 0 4 1
## 1942 1900 CO EWR DCA 0 4 1
## 1943 1900 RU EWR IAD 0 4 1
## 1944 1900 MQ LGA DCA 0 5 1
## 1945 1900 US LGA DCA 0 5 1
## 1946 1900 RU EWR IAD 0 5 1
## 1947 1900 US LGA DCA 0 6 0
## 1948 1900 MQ LGA DCA 0 7 1
## 1949 1900 US LGA DCA 0 7 0
## 1950 1900 CO EWR DCA 0 7 1
## 1951 1900 MQ LGA DCA 0 1 1
## 1952 1900 US LGA DCA 0 1 0
## 1953 1900 CO EWR DCA 0 1 0
## 1954 1900 RU EWR IAD 0 1 1
## 1955 1900 MQ LGA DCA 0 2 1
## 1956 1900 US LGA DCA 0 2 0
## 1957 1900 CO EWR DCA 0 2 0
## 1958 1900 RU EWR IAD 0 2 0
## 1959 1900 MQ LGA DCA 0 3 0
## 1960 1900 US LGA DCA 0 3 0
## 1961 1900 CO EWR DCA 0 3 0
## 1962 1900 RU EWR IAD 0 3 0
## 1963 1900 MQ LGA DCA 0 4 0
## 1964 1900 US LGA DCA 0 4 0
## 1965 1900 CO EWR DCA 0 4 0
## 1966 1900 RU EWR IAD 0 4 0
## 1967 1900 MQ LGA DCA 0 5 0
## 1968 1900 US LGA DCA 0 5 0
## 1969 1900 CO EWR DCA 0 5 1
## 1970 1900 RU EWR IAD 0 5 0
## 1971 1900 US LGA DCA 0 6 0
## 1972 1900 MQ LGA DCA 0 7 0
## 1973 1900 US LGA DCA 0 7 0
## 1974 1900 CO EWR DCA 0 7 0
## 1975 1900 RU EWR IAD 0 7 1
## 1976 1900 MQ LGA DCA 1 1 1
## 1977 1900 US LGA DCA 0 1 0
## 1978 1900 CO EWR DCA 0 1 1
## 1979 1900 RU EWR IAD 0 1 1
## 1980 1900 MQ LGA DCA 0 3 1
## 1981 1900 US LGA DCA 0 3 0
## 1982 1900 CO EWR DCA 0 3 1
## 1983 1900 RU EWR IAD 0 3 0
## 1984 1900 MQ LGA DCA 0 4 0
## 1985 1900 US LGA DCA 0 4 0
## 1986 1900 CO EWR DCA 0 4 0
## 1987 1900 RU EWR IAD 0 4 0
## 1988 1900 US LGA DCA 0 5 0
## 1989 1900 CO EWR DCA 0 5 0
## 1990 1900 RU EWR IAD 0 5 1
## 1991 1900 US LGA DCA 0 6 0
## 1992 1930 DL LGA DCA 0 1 1
## 1993 1930 DL LGA DCA 0 2 0
## 1994 1930 DL LGA DCA 0 3 0
## 1995 1930 DL LGA DCA 0 4 0
## 1996 1930 DL LGA DCA 0 5 0
## 1997 1930 DL LGA DCA 0 7 0
## 1998 1930 DL LGA DCA 0 1 0
## 1999 1930 DL LGA DCA 0 2 0
## 2000 1930 DL LGA DCA 0 3 1
## 2001 1930 DL LGA DCA 0 4 1
## 2002 1930 DL LGA DCA 0 5 0
## 2003 1930 DL LGA DCA 0 1 0
## 2004 1930 DL LGA DCA 0 2 0
## 2005 1930 DL LGA DCA 0 3 0
## 2006 1930 DL LGA DCA 0 4 0
## 2007 1930 DL LGA DCA 0 5 0
## 2008 1930 DL LGA DCA 0 7 0
## 2009 1930 DL LGA DCA 0 1 0
## 2010 1930 DL LGA DCA 0 4 0
## 2011 1930 DL LGA DCA 0 5 0
## 2012 2000 US LGA DCA 0 7 0
## 2013 2000 US LGA DCA 0 1 0
## 2014 2000 US LGA DCA 0 2 0
## 2015 2000 US LGA DCA 0 3 1
## 2016 2000 US LGA DCA 0 4 1
## 2017 2000 US LGA DCA 0 5 0
## 2018 2000 US LGA DCA 0 7 0
## 2019 2000 US LGA DCA 0 1 0
## 2020 2000 US LGA DCA 0 2 0
## 2021 2000 US LGA DCA 0 3 1
## 2022 2000 US LGA DCA 0 5 0
## 2023 2000 US LGA DCA 0 7 0
## 2024 2000 US LGA DCA 0 1 0
## 2025 2000 US LGA DCA 0 2 0
## 2026 2000 US LGA DCA 0 3 0
## 2027 2000 US LGA DCA 0 4 0
## 2028 2000 US LGA DCA 0 5 0
## 2029 2000 US LGA DCA 0 7 0
## 2030 2000 US LGA DCA 0 1 0
## 2031 2000 US LGA DCA 0 3 1
## 2032 2000 US LGA DCA 0 4 0
## 2033 2000 US LGA DCA 0 5 0
## 2034 2030 DL LGA DCA 0 4 0
## 2035 2030 DL LGA DCA 0 5 0
## 2036 2030 DL LGA DCA 0 6 0
## 2037 2030 DL LGA DCA 0 7 0
## 2038 2030 DL LGA DCA 0 1 0
## 2039 2030 DL LGA DCA 0 2 0
## 2040 2030 DL LGA DCA 0 3 0
## 2041 2030 DL LGA DCA 0 4 0
## 2042 2030 DL LGA DCA 0 5 0
## 2043 2030 DL LGA DCA 0 6 0
## 2044 2030 DL LGA DCA 0 7 0
## 2045 2030 DL LGA DCA 0 1 0
## 2046 2030 DL LGA DCA 0 2 1
## 2047 2030 DL LGA DCA 0 3 1
## 2048 2030 DL LGA DCA 0 4 1
## 2049 2030 DL LGA DCA 0 5 0
## 2050 2030 DL LGA DCA 0 6 0
## 2051 2030 DL LGA DCA 0 7 0
## 2052 2030 DL LGA DCA 0 1 0
## 2053 2030 DL LGA DCA 0 2 0
## 2054 2030 DL LGA DCA 0 3 0
## 2055 2030 DL LGA DCA 0 4 0
## 2056 2030 DL LGA DCA 0 5 0
## 2057 2030 DL LGA DCA 0 6 0
## 2058 2030 DL LGA DCA 0 7 0
## 2059 2030 DL LGA DCA 0 1 0
## 2060 2030 DL LGA DCA 0 2 1
## 2061 2030 DL LGA DCA 0 3 1
## 2062 2030 DL LGA DCA 0 4 0
## 2063 2030 DL LGA DCA 0 5 0
## 2064 2030 DL LGA DCA 0 6 0
## 2065 2100 US LGA DCA 0 4 0
## 2066 2100 US LGA DCA 0 5 0
## 2067 2100 RU EWR DCA 0 5 0
## 2068 2100 US LGA DCA 0 7 0
## 2069 2100 US LGA DCA 0 1 0
## 2070 2100 RU EWR DCA 0 1 0
## 2071 2100 US LGA DCA 0 2 0
## 2072 2100 RU EWR DCA 0 2 1
## 2073 2100 US LGA DCA 0 3 0
## 2074 2100 RU EWR DCA 0 3 0
## 2075 2100 US LGA DCA 0 4 0
## 2076 2100 RU EWR DCA 0 4 0
## 2077 2100 US LGA DCA 0 5 0
## 2078 2100 RU EWR DCA 0 5 0
## 2079 2100 US LGA DCA 0 7 0
## 2080 2100 US LGA DCA 0 1 0
## 2081 2100 RU EWR DCA 0 1 0
## 2082 2100 US LGA DCA 0 2 0
## 2083 2100 RU EWR DCA 0 2 0
## 2084 2100 US LGA DCA 0 3 0
## 2085 2100 RU EWR DCA 0 3 0
## 2086 2100 US LGA DCA 0 4 1
## 2087 2100 RU EWR DCA 0 4 1
## 2088 2100 US LGA DCA 0 5 0
## 2089 2100 RU EWR DCA 0 5 0
## 2090 2100 US LGA DCA 0 7 0
## 2091 2100 US LGA DCA 0 1 0
## 2092 2100 RU EWR DCA 0 1 0
## 2093 2100 US LGA DCA 0 2 0
## 2094 2100 RU EWR DCA 0 2 0
## 2095 2100 US LGA DCA 0 3 0
## 2096 2100 RU EWR DCA 0 3 0
## 2097 2100 US LGA DCA 0 4 1
## 2098 2100 RU EWR DCA 0 4 0
## 2099 2100 US LGA DCA 0 5 0
## 2100 2100 RU EWR DCA 0 5 0
## 2101 2100 US LGA DCA 0 7 1
## 2102 2100 US LGA DCA 0 1 1
## 2103 2100 RU EWR DCA 0 1 0
## 2104 2100 US LGA DCA 0 3 0
## 2105 2100 RU EWR DCA 0 3 1
## 2106 2100 US LGA DCA 0 4 0
## 2107 2100 RU EWR DCA 0 4 0
## 2108 2100 US LGA DCA 0 5 0
## 2109 2100 RU EWR DCA 0 5 0
## 2110 2120 DH JFK IAD 0 4 0
## 2111 2120 DH LGA IAD 0 4 0
## 2112 2120 DH EWR IAD 0 4 0
## 2113 2120 DH JFK IAD 0 5 1
## 2114 2120 DH LGA IAD 0 5 0
## 2115 2120 DH JFK IAD 0 6 1
## 2116 2120 DH LGA IAD 0 6 0
## 2117 2120 DH EWR IAD 0 6 0
## 2118 2120 DH JFK IAD 0 7 0
## 2119 2120 DH LGA IAD 0 7 0
## 2120 2120 DH EWR IAD 0 7 1
## 2121 2120 DH JFK IAD 0 1 1
## 2122 2120 DH LGA IAD 0 1 0
## 2123 2120 DH EWR IAD 0 1 1
## 2124 2120 DH JFK IAD 0 2 1
## 2125 2120 DH LGA IAD 0 2 0
## 2126 2120 DH EWR IAD 0 2 0
## 2127 2120 DH JFK IAD 0 3 0
## 2128 2120 DH EWR IAD 0 3 0
## 2129 2120 DH LGA IAD 0 4 1
## 2130 2120 DH JFK IAD 0 4 0
## 2131 2120 DH EWR IAD 0 4 0
## 2132 2120 DH LGA IAD 0 5 0
## 2133 2120 DH JFK IAD 0 5 0
## 2134 2120 DH EWR IAD 0 5 0
## 2135 2120 DH LGA IAD 0 6 0
## 2136 2120 DH JFK IAD 0 6 0
## 2137 2120 DH EWR IAD 0 6 0
## 2138 2120 DH LGA IAD 0 7 0
## 2139 2120 DH JFK IAD 0 7 1
## 2140 2120 DH EWR IAD 0 7 0
## 2141 2120 DH LGA IAD 0 1 0
## 2142 2120 DH JFK IAD 0 1 0
## 2143 2120 DH EWR IAD 0 1 0
## 2144 2120 DH LGA IAD 0 2 0
## 2145 2120 DH JFK IAD 0 2 0
## 2146 2120 DH EWR IAD 0 2 0
## 2147 2120 DH LGA IAD 0 3 0
## 2148 2120 DH JFK IAD 0 3 0
## 2149 2120 DH EWR IAD 0 3 1
## 2150 2120 DH LGA IAD 0 4 1
## 2151 2120 DH JFK IAD 0 4 0
## 2152 2120 DH EWR IAD 0 4 0
## 2153 2120 DH LGA IAD 0 5 0
## 2154 2120 DH JFK IAD 0 5 0
## 2155 2120 DH EWR IAD 0 5 0
## 2156 2120 DH LGA IAD 0 6 1
## 2157 2120 DH JFK IAD 0 6 1
## 2158 2120 DH EWR IAD 0 6 1
## 2159 2120 DH LGA IAD 0 7 0
## 2160 2120 DH JFK IAD 0 7 0
## 2161 2120 DH EWR IAD 0 7 0
## 2162 2120 DH LGA IAD 0 1 1
## 2163 2120 DH JFK IAD 0 1 0
## 2164 2120 DH EWR IAD 0 1 1
## 2165 2120 DH LGA IAD 0 2 0
## 2166 2120 DH JFK IAD 0 2 0
## 2167 2120 DH EWR IAD 0 2 0
## 2168 2120 DH LGA IAD 0 3 1
## 2169 2120 DH JFK IAD 0 3 0
## 2170 2120 DH EWR IAD 0 3 0
## 2171 2120 DH LGA IAD 0 4 0
## 2172 2120 DH JFK IAD 0 4 0
## 2173 2120 DH EWR IAD 0 4 0
## 2174 2120 DH LGA IAD 0 5 1
## 2175 2120 DH JFK IAD 0 5 0
## 2176 2120 DH EWR IAD 0 5 1
## 2177 2120 DH LGA IAD 0 6 0
## 2178 2120 DH JFK IAD 0 6 0
## 2179 2120 DH EWR IAD 0 6 0
## 2180 2120 DH LGA IAD 0 7 1
## 2181 2120 DH JFK IAD 1 7 1
## 2182 2120 DH EWR IAD 0 7 1
## 2183 2120 DH LGA IAD 0 1 1
## 2184 2120 DH JFK IAD 0 1 0
## 2185 2120 DH EWR IAD 0 1 1
## 2186 2120 DH JFK IAD 1 2 1
## 2187 2120 DH EWR IAD 0 2 1
## 2188 2120 DH LGA IAD 0 3 1
## 2189 2120 DH JFK IAD 0 3 0
## 2190 2120 DH EWR IAD 0 3 0
## 2191 2120 DH LGA IAD 0 4 0
## 2192 2120 DH JFK IAD 0 4 0
## 2193 2120 DH EWR IAD 0 4 1
## 2194 2120 DH LGA IAD 0 5 0
## 2195 2120 DH JFK IAD 0 5 1
## 2196 2120 DH EWR IAD 0 5 0
## 2197 2120 DH LGA IAD 0 6 0
## 2198 2120 DH JFK IAD 0 6 0
## 2199 2120 DH EWR IAD 0 6 0
## 2200 2130 RU EWR DCA 0 7 0
## 2201 2130 RU EWR DCA 0 7 1
dim(fd)
## [1] 2201 7
str(fd)
## 'data.frame': 2201 obs. of 7 variables:
## $ CRS_DEP_TIME : int 600 600 600 600 600 600 600 600 600 600 ...
## $ CARRIER : Factor w/ 8 levels "CO","DH","DL",..: 4 4 4 4 4 4 4 4 4 4 ...
## $ DEST : Factor w/ 3 levels "EWR","JFK","LGA": 2 2 2 2 2 2 2 2 2 2 ...
## $ ORIGIN : Factor w/ 3 levels "BWI","DCA","IAD": 2 2 2 2 2 2 2 2 2 2 ...
## $ Weather : int 0 0 0 0 0 0 0 0 0 0 ...
## $ DAY_WEEK : int 4 5 6 7 1 2 3 4 5 6 ...
## $ Flight.Status: int 0 0 0 0 0 0 0 0 0 1 ...
summary(fd)
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather
## Min. : 600 DH :551 EWR: 665 BWI: 145 Min. :0.00000
## 1st Qu.:1000 RU :408 JFK: 386 DCA:1370 1st Qu.:0.00000
## Median :1455 US :404 LGA:1150 IAD: 686 Median :0.00000
## Mean :1372 DL :388 Mean :0.01454
## 3rd Qu.:1710 MQ :295 3rd Qu.:0.00000
## Max. :2130 CO : 94 Max. :1.00000
## (Other): 61
## DAY_WEEK Flight.Status
## Min. :1.000 Min. :0.0000
## 1st Qu.:2.000 1st Qu.:0.0000
## Median :4.000 Median :0.0000
## Mean :3.905 Mean :0.1945
## 3rd Qu.:5.000 3rd Qu.:0.0000
## Max. :7.000 Max. :1.0000
##
head(fd)
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather DAY_WEEK Flight.Status
## 1 600 MQ JFK DCA 0 4 0
## 2 600 MQ JFK DCA 0 5 0
## 3 600 MQ JFK DCA 0 6 0
## 4 600 MQ JFK DCA 0 7 0
## 5 600 MQ JFK DCA 0 1 0
## 6 600 MQ JFK DCA 0 2 0
tail(fd)
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather DAY_WEEK Flight.Status
## 2196 2120 DH EWR IAD 0 5 0
## 2197 2120 DH LGA IAD 0 6 0
## 2198 2120 DH JFK IAD 0 6 0
## 2199 2120 DH EWR IAD 0 6 0
## 2200 2130 RU EWR DCA 0 7 0
## 2201 2130 RU EWR DCA 0 7 1
#using as.factor()
cols=c("Weather","DAY_WEEK","Flight.Status")
cols
## [1] "Weather" "DAY_WEEK" "Flight.Status"
fd[cols]<-lapply(fd[cols],factor)
fd[cols]
## Weather DAY_WEEK Flight.Status
## 1 0 4 0
## 2 0 5 0
## 3 0 6 0
## 4 0 7 0
## 5 0 1 0
## 6 0 2 0
## 7 0 3 0
## 8 0 4 0
## 9 0 5 0
## 10 0 6 1
## 11 0 7 0
## 12 0 1 0
## 13 0 2 0
## 14 0 3 0
## 15 0 4 0
## 16 0 5 0
## 17 0 6 0
## 18 0 7 1
## 19 0 1 0
## 20 0 2 0
## 21 0 3 0
## 22 0 4 0
## 23 0 5 0
## 24 0 6 0
## 25 0 4 0
## 26 0 6 0
## 27 0 5 0
## 28 0 6 0
## 29 0 1 0
## 30 0 1 1
## 31 0 1 0
## 32 0 2 0
## 33 0 2 0
## 34 0 2 0
## 35 0 3 0
## 36 0 3 0
## 37 0 3 0
## 38 0 4 0
## 39 0 4 0
## 40 0 4 0
## 41 0 5 0
## 42 0 5 0
## 43 0 5 0
## 44 0 1 0
## 45 0 1 0
## 46 0 1 0
## 47 0 2 0
## 48 0 2 0
## 49 0 2 0
## 50 0 3 0
## 51 0 3 0
## 52 0 3 0
## 53 0 4 0
## 54 0 4 1
## 55 0 4 0
## 56 0 5 0
## 57 0 5 0
## 58 0 5 1
## 59 0 1 0
## 60 0 1 0
## 61 0 2 0
## 62 0 2 0
## 63 0 2 0
## 64 0 3 0
## 65 0 3 0
## 66 0 3 0
## 67 0 4 0
## 68 0 4 0
## 69 0 4 0
## 70 0 5 0
## 71 0 5 0
## 72 0 5 0
## 73 0 1 1
## 74 0 1 0
## 75 0 2 0
## 76 0 3 0
## 77 0 3 0
## 78 0 4 0
## 79 0 4 0
## 80 0 4 0
## 81 0 5 0
## 82 0 5 0
## 83 0 5 0
## 84 0 5 0
## 85 0 6 0
## 86 0 7 0
## 87 0 1 1
## 88 0 2 0
## 89 0 3 0
## 90 0 4 0
## 91 0 5 1
## 92 0 1 1
## 93 0 2 1
## 94 0 3 0
## 95 0 5 0
## 96 0 1 1
## 97 0 2 0
## 98 0 3 1
## 99 0 4 0
## 100 0 5 0
## 101 0 1 1
## 102 1 2 1
## 103 0 3 0
## 104 0 4 1
## 105 0 5 0
## 106 0 2 0
## 107 0 3 0
## 108 0 4 1
## 109 0 5 0
## 110 0 6 0
## 111 0 1 0
## 112 0 2 0
## 113 0 3 0
## 114 0 4 0
## 115 0 5 0
## 116 0 6 0
## 117 0 1 0
## 118 0 2 0
## 119 0 3 0
## 120 0 4 0
## 121 0 5 0
## 122 0 6 0
## 123 0 2 0
## 124 0 4 0
## 125 0 5 0
## 126 0 6 0
## 127 0 4 0
## 128 0 5 0
## 129 0 5 0
## 130 0 5 0
## 131 0 5 0
## 132 0 6 0
## 133 0 6 0
## 134 0 6 0
## 135 0 6 0
## 136 0 1 0
## 137 0 1 0
## 138 0 1 1
## 139 0 1 0
## 140 0 1 0
## 141 0 2 0
## 142 0 2 0
## 143 0 2 0
## 144 0 2 0
## 145 0 3 0
## 146 0 3 0
## 147 0 3 0
## 148 0 3 1
## 149 0 4 0
## 150 0 4 0
## 151 0 4 0
## 152 0 4 0
## 153 0 5 0
## 154 0 5 0
## 155 0 5 1
## 156 0 6 0
## 157 0 6 0
## 158 0 6 0
## 159 0 1 1
## 160 0 1 1
## 161 0 1 0
## 162 0 1 0
## 163 0 2 0
## 164 0 2 0
## 165 0 2 0
## 166 0 2 0
## 167 0 3 1
## 168 0 3 0
## 169 0 3 0
## 170 0 3 0
## 171 0 4 1
## 172 0 5 0
## 173 0 5 0
## 174 0 5 0
## 175 0 6 0
## 176 0 6 0
## 177 0 6 0
## 178 0 1 1
## 179 0 1 0
## 180 0 1 0
## 181 0 1 0
## 182 0 2 0
## 183 0 2 0
## 184 0 2 0
## 185 0 2 1
## 186 0 3 0
## 187 0 3 0
## 188 0 3 0
## 189 0 3 0
## 190 0 4 0
## 191 0 4 0
## 192 0 4 0
## 193 0 4 0
## 194 0 5 0
## 195 0 5 0
## 196 0 5 0
## 197 0 5 0
## 198 0 6 0
## 199 0 6 1
## 200 0 6 1
## 201 0 1 1
## 202 0 2 1
## 203 0 2 0
## 204 0 2 1
## 205 1 2 1
## 206 0 3 0
## 207 0 3 0
## 208 0 4 1
## 209 0 4 1
## 210 0 4 0
## 211 0 4 0
## 212 0 5 0
## 213 0 5 0
## 214 0 5 0
## 215 0 5 1
## 216 0 6 0
## 217 0 6 0
## 218 0 6 0
## 219 0 7 0
## 220 0 1 0
## 221 0 2 0
## 222 0 4 0
## 223 0 5 1
## 224 0 6 0
## 225 0 1 0
## 226 0 2 0
## 227 0 3 0
## 228 0 4 1
## 229 0 5 0
## 230 0 6 0
## 231 0 1 0
## 232 0 2 0
## 233 0 3 0
## 234 0 4 0
## 235 0 5 0
## 236 0 6 0
## 237 1 1 1
## 238 0 2 0
## 239 0 3 0
## 240 0 4 0
## 241 0 5 0
## 242 0 6 0
## 243 0 2 0
## 244 0 3 0
## 245 0 4 0
## 246 0 5 0
## 247 0 1 0
## 248 0 2 0
## 249 0 3 0
## 250 0 4 1
## 251 0 5 0
## 252 0 1 0
## 253 0 2 0
## 254 0 3 0
## 255 0 4 0
## 256 0 5 0
## 257 1 1 1
## 258 0 4 0
## 259 0 5 0
## 260 0 5 0
## 261 0 1 0
## 262 0 1 0
## 263 0 1 0
## 264 0 2 0
## 265 0 2 0
## 266 0 3 0
## 267 0 3 0
## 268 0 4 0
## 269 0 4 0
## 270 0 5 1
## 271 0 5 0
## 272 0 1 0
## 273 0 1 0
## 274 0 2 0
## 275 0 2 0
## 276 0 3 0
## 277 0 3 0
## 278 0 4 1
## 279 0 4 0
## 280 0 5 1
## 281 0 5 0
## 282 0 1 1
## 283 0 1 0
## 284 0 2 0
## 285 0 2 0
## 286 0 3 0
## 287 0 3 0
## 288 0 4 0
## 289 0 4 0
## 290 0 5 0
## 291 0 5 0
## 292 1 1 1
## 293 0 1 0
## 294 0 2 0
## 295 0 2 0
## 296 0 3 1
## 297 0 3 1
## 298 0 4 0
## 299 0 4 0
## 300 1 5 1
## 301 0 5 0
## 302 0 6 0
## 303 0 7 0
## 304 0 1 0
## 305 0 2 0
## 306 0 3 0
## 307 0 4 0
## 308 0 5 0
## 309 0 6 0
## 310 0 7 0
## 311 0 1 0
## 312 0 2 0
## 313 0 3 0
## 314 0 5 1
## 315 0 6 0
## 316 0 7 0
## 317 0 1 0
## 318 0 2 0
## 319 0 3 0
## 320 0 4 0
## 321 0 5 0
## 322 0 6 0
## 323 0 7 0
## 324 0 2 1
## 325 0 4 1
## 326 0 5 0
## 327 0 6 1
## 328 0 4 0
## 329 0 4 0
## 330 0 5 0
## 331 0 5 0
## 332 0 6 0
## 333 0 6 1
## 334 0 7 0
## 335 0 7 0
## 336 0 1 1
## 337 0 1 0
## 338 0 2 0
## 339 0 2 0
## 340 0 3 0
## 341 0 3 0
## 342 0 4 0
## 343 0 4 0
## 344 0 5 1
## 345 0 5 0
## 346 0 6 1
## 347 0 6 0
## 348 0 7 0
## 349 0 7 0
## 350 0 1 0
## 351 0 1 0
## 352 0 2 0
## 353 0 2 0
## 354 0 3 0
## 355 0 3 0
## 356 0 4 0
## 357 0 4 0
## 358 0 5 0
## 359 0 5 0
## 360 0 6 0
## 361 0 6 0
## 362 0 7 0
## 363 0 7 0
## 364 0 1 0
## 365 0 1 0
## 366 0 2 0
## 367 0 2 0
## 368 0 3 0
## 369 0 3 0
## 370 0 4 0
## 371 0 4 0
## 372 0 5 0
## 373 0 5 0
## 374 0 6 0
## 375 0 6 0
## 376 0 7 0
## 377 0 7 0
## 378 0 1 0
## 379 0 1 0
## 380 0 2 1
## 381 0 2 1
## 382 0 3 1
## 383 0 3 0
## 384 0 4 0
## 385 0 4 1
## 386 0 5 0
## 387 0 5 0
## 388 0 6 1
## 389 0 6 0
## 390 0 7 0
## 391 0 7 0
## 392 0 7 0
## 393 0 4 0
## 394 0 5 0
## 395 0 6 0
## 396 0 7 0
## 397 0 1 0
## 398 0 2 0
## 399 0 3 0
## 400 0 4 0
## 401 0 5 1
## 402 0 6 0
## 403 0 7 0
## 404 0 1 0
## 405 0 2 0
## 406 0 3 0
## 407 0 4 1
## 408 0 5 1
## 409 0 6 0
## 410 0 7 0
## 411 0 1 0
## 412 0 2 0
## 413 0 3 0
## 414 0 4 0
## 415 0 5 0
## 416 0 6 0
## 417 0 7 0
## 418 1 1 1
## 419 1 2 1
## 420 0 3 0
## 421 0 4 0
## 422 0 5 0
## 423 0 6 0
## 424 0 4 0
## 425 0 4 0
## 426 0 5 0
## 427 0 5 0
## 428 0 5 0
## 429 0 5 0
## 430 0 6 0
## 431 0 6 0
## 432 0 7 0
## 433 0 7 0
## 434 0 1 0
## 435 0 1 0
## 436 0 1 1
## 437 0 1 0
## 438 0 2 0
## 439 0 2 0
## 440 0 2 0
## 441 0 3 0
## 442 0 3 0
## 443 0 3 0
## 444 0 4 0
## 445 0 4 0
## 446 0 4 0
## 447 0 5 0
## 448 0 5 0
## 449 0 6 0
## 450 0 6 0
## 451 0 7 0
## 452 0 1 0
## 453 0 1 0
## 454 0 1 0
## 455 0 2 0
## 456 0 2 0
## 457 0 2 0
## 458 0 3 0
## 459 0 3 0
## 460 0 3 0
## 461 0 4 1
## 462 0 4 1
## 463 0 5 1
## 464 0 5 1
## 465 0 5 0
## 466 0 6 0
## 467 0 6 0
## 468 0 7 0
## 469 0 1 0
## 470 0 1 0
## 471 0 1 0
## 472 0 2 0
## 473 0 2 0
## 474 0 2 0
## 475 0 3 0
## 476 0 3 0
## 477 0 3 0
## 478 0 4 0
## 479 0 4 0
## 480 0 4 0
## 481 0 5 0
## 482 0 5 0
## 483 0 5 0
## 484 0 6 1
## 485 0 6 0
## 486 0 7 0
## 487 1 1 1
## 488 1 1 1
## 489 0 1 0
## 490 0 2 0
## 491 0 3 1
## 492 0 3 1
## 493 0 4 0
## 494 0 4 0
## 495 0 4 0
## 496 0 5 0
## 497 0 5 0
## 498 0 5 0
## 499 0 6 0
## 500 0 6 0
## 501 0 7 0
## 502 0 7 0
## 503 0 7 0
## 504 0 4 0
## 505 0 5 0
## 506 0 6 0
## 507 0 7 0
## 508 0 1 0
## 509 0 2 0
## 510 0 3 0
## 511 0 4 0
## 512 0 5 0
## 513 0 6 0
## 514 0 7 0
## 515 0 1 1
## 516 0 2 0
## 517 0 3 0
## 518 0 4 0
## 519 0 5 0
## 520 0 6 0
## 521 0 7 0
## 522 0 2 0
## 523 0 3 0
## 524 0 4 0
## 525 0 5 0
## 526 0 6 0
## 527 0 7 0
## 528 0 1 0
## 529 0 3 0
## 530 0 5 0
## 531 0 6 0
## 532 0 7 0
## 533 0 1 0
## 534 0 2 0
## 535 0 3 0
## 536 0 4 0
## 537 0 5 0
## 538 0 7 0
## 539 0 1 0
## 540 0 2 0
## 541 0 3 0
## 542 0 5 0
## 543 0 7 0
## 544 0 1 0
## 545 0 2 0
## 546 0 3 0
## 547 0 4 0
## 548 0 5 0
## 549 0 7 0
## 550 0 1 0
## 551 0 2 0
## 552 0 3 0
## 553 0 4 0
## 554 0 5 0
## 555 0 4 0
## 556 0 5 0
## 557 0 6 0
## 558 0 6 0
## 559 0 7 0
## 560 0 7 1
## 561 0 1 0
## 562 0 1 1
## 563 0 2 0
## 564 0 2 0
## 565 0 3 0
## 566 0 3 1
## 567 0 4 0
## 568 0 4 0
## 569 0 5 0
## 570 0 5 1
## 571 0 6 0
## 572 0 6 0
## 573 0 7 0
## 574 0 7 0
## 575 0 1 0
## 576 0 1 0
## 577 0 2 0
## 578 0 2 0
## 579 0 3 0
## 580 0 3 0
## 581 0 4 1
## 582 0 5 1
## 583 0 5 1
## 584 0 6 0
## 585 0 6 0
## 586 0 7 0
## 587 1 7 1
## 588 0 1 0
## 589 0 1 0
## 590 0 2 0
## 591 0 2 0
## 592 0 3 0
## 593 0 3 0
## 594 0 4 0
## 595 0 4 0
## 596 0 5 0
## 597 0 5 0
## 598 0 6 0
## 599 0 6 0
## 600 0 7 0
## 601 0 7 1
## 602 0 1 0
## 603 0 2 0
## 604 0 3 0
## 605 0 4 0
## 606 0 4 0
## 607 0 5 0
## 608 0 5 0
## 609 0 6 0
## 610 0 6 0
## 611 0 4 0
## 612 0 5 1
## 613 0 6 0
## 614 0 7 0
## 615 0 1 0
## 616 0 2 0
## 617 0 3 0
## 618 0 4 0
## 619 0 5 0
## 620 0 1 0
## 621 0 2 0
## 622 0 3 0
## 623 0 1 0
## 624 0 2 0
## 625 0 3 0
## 626 0 4 0
## 627 0 5 0
## 628 0 1 1
## 629 0 2 0
## 630 0 3 0
## 631 0 5 0
## 632 0 4 0
## 633 0 5 0
## 634 0 5 0
## 635 0 6 0
## 636 0 7 0
## 637 0 1 0
## 638 0 1 0
## 639 0 2 0
## 640 0 2 0
## 641 0 3 0
## 642 0 3 0
## 643 0 4 0
## 644 0 4 0
## 645 0 5 1
## 646 0 5 0
## 647 0 6 0
## 648 0 7 0
## 649 0 1 0
## 650 0 1 1
## 651 0 2 0
## 652 0 2 0
## 653 0 3 1
## 654 0 3 0
## 655 0 4 0
## 656 0 4 0
## 657 0 5 1
## 658 0 5 0
## 659 0 6 0
## 660 0 7 0
## 661 0 1 0
## 662 0 1 0
## 663 0 2 0
## 664 0 2 0
## 665 0 3 0
## 666 0 3 0
## 667 0 4 0
## 668 0 4 0
## 669 0 5 0
## 670 0 5 0
## 671 0 6 0
## 672 0 7 0
## 673 0 1 1
## 674 0 2 0
## 675 0 3 0
## 676 0 4 0
## 677 0 5 0
## 678 0 5 0
## 679 0 6 0
## 680 0 1 0
## 681 0 2 0
## 682 0 3 0
## 683 0 4 0
## 684 0 5 0
## 685 0 7 0
## 686 0 1 0
## 687 0 2 0
## 688 0 3 1
## 689 0 4 0
## 690 0 5 0
## 691 0 2 0
## 692 0 3 0
## 693 0 4 0
## 694 0 5 0
## 695 0 7 0
## 696 0 1 0
## 697 0 3 0
## 698 0 4 0
## 699 0 5 0
## 700 0 7 0
## 701 0 1 0
## 702 0 2 0
## 703 0 3 0
## 704 0 4 0
## 705 0 5 0
## 706 0 7 0
## 707 0 1 0
## 708 0 2 0
## 709 0 3 0
## 710 0 4 0
## 711 0 5 0
## 712 0 7 0
## 713 0 1 0
## 714 0 2 0
## 715 0 3 0
## 716 0 4 0
## 717 0 5 0
## 718 0 7 0
## 719 0 2 0
## 720 0 4 0
## 721 0 5 0
## 722 0 4 0
## 723 0 5 0
## 724 0 6 0
## 725 0 7 0
## 726 0 1 0
## 727 0 2 0
## 728 0 3 0
## 729 0 4 0
## 730 0 5 0
## 731 0 6 0
## 732 0 7 0
## 733 0 1 0
## 734 0 2 0
## 735 0 3 0
## 736 0 5 0
## 737 0 7 1
## 738 0 1 0
## 739 0 2 0
## 740 0 3 0
## 741 0 4 0
## 742 0 5 0
## 743 0 6 0
## 744 0 7 0
## 745 0 1 0
## 746 0 2 0
## 747 0 4 0
## 748 0 5 0
## 749 0 6 0
## 750 0 4 0
## 751 0 5 0
## 752 0 6 0
## 753 0 7 0
## 754 0 1 1
## 755 0 2 0
## 756 0 3 0
## 757 0 4 0
## 758 0 5 0
## 759 0 6 1
## 760 0 7 0
## 761 0 1 0
## 762 0 2 0
## 763 0 3 0
## 764 0 4 0
## 765 0 5 0
## 766 0 6 0
## 767 0 7 0
## 768 0 1 0
## 769 0 2 1
## 770 0 3 0
## 771 0 4 0
## 772 0 5 0
## 773 0 6 0
## 774 0 7 1
## 775 0 1 0
## 776 0 2 1
## 777 0 3 1
## 778 0 4 0
## 779 0 5 0
## 780 0 6 0
## 781 0 4 0
## 782 0 4 0
## 783 0 5 0
## 784 0 5 1
## 785 0 6 0
## 786 0 6 1
## 787 0 7 0
## 788 0 7 1
## 789 0 1 1
## 790 0 1 1
## 791 0 2 0
## 792 0 2 0
## 793 0 3 0
## 794 0 3 1
## 795 0 4 0
## 796 0 4 0
## 797 0 5 0
## 798 0 5 0
## 799 0 6 0
## 800 0 6 0
## 801 0 7 0
## 802 0 7 0
## 803 0 1 0
## 804 0 1 1
## 805 0 2 0
## 806 0 2 0
## 807 0 3 0
## 808 0 3 0
## 809 0 4 0
## 810 0 4 0
## 811 0 5 0
## 812 0 6 0
## 813 0 6 0
## 814 0 7 0
## 815 0 7 1
## 816 0 1 0
## 817 0 1 0
## 818 0 2 0
## 819 0 2 0
## 820 0 3 0
## 821 0 3 0
## 822 0 4 1
## 823 0 4 0
## 824 0 5 1
## 825 0 5 0
## 826 0 6 0
## 827 0 6 0
## 828 0 7 0
## 829 0 7 0
## 830 0 1 0
## 831 0 1 1
## 832 1 2 1
## 833 0 2 1
## 834 0 3 0
## 835 0 3 1
## 836 0 4 1
## 837 0 4 0
## 838 0 5 0
## 839 0 5 1
## 840 0 6 0
## 841 0 6 0
## 842 0 4 0
## 843 0 4 0
## 844 0 4 0
## 845 0 4 0
## 846 0 5 0
## 847 0 5 0
## 848 0 5 0
## 849 0 5 0
## 850 0 6 0
## 851 0 6 0
## 852 0 6 0
## 853 0 7 0
## 854 0 7 0
## 855 0 7 0
## 856 0 1 0
## 857 0 1 0
## 858 0 1 1
## 859 0 1 1
## 860 0 2 0
## 861 0 2 0
## 862 0 2 0
## 863 0 2 0
## 864 0 3 0
## 865 0 3 0
## 866 0 3 0
## 867 0 3 0
## 868 0 4 0
## 869 0 4 0
## 870 0 4 0
## 871 0 4 0
## 872 0 5 0
## 873 0 5 0
## 874 0 5 0
## 875 0 5 0
## 876 0 6 0
## 877 0 6 0
## 878 0 6 0
## 879 0 7 1
## 880 0 7 0
## 881 0 7 0
## 882 0 1 0
## 883 0 1 0
## 884 0 1 0
## 885 0 1 0
## 886 0 2 0
## 887 0 2 0
## 888 0 2 0
## 889 0 2 0
## 890 0 3 0
## 891 0 3 0
## 892 0 3 0
## 893 0 3 0
## 894 0 4 1
## 895 0 4 0
## 896 0 4 1
## 897 0 5 1
## 898 0 5 0
## 899 0 5 1
## 900 0 5 1
## 901 0 6 0
## 902 0 6 0
## 903 0 6 0
## 904 0 7 1
## 905 0 7 1
## 906 0 7 0
## 907 0 1 0
## 908 0 1 0
## 909 0 1 0
## 910 0 1 0
## 911 0 2 0
## 912 0 2 0
## 913 0 2 0
## 914 0 2 0
## 915 0 3 0
## 916 0 3 0
## 917 0 3 0
## 918 0 3 0
## 919 0 4 0
## 920 0 4 0
## 921 0 4 0
## 922 0 4 0
## 923 0 5 1
## 924 0 5 1
## 925 0 5 0
## 926 0 5 0
## 927 0 6 0
## 928 0 6 0
## 929 0 6 0
## 930 0 7 0
## 931 0 7 0
## 932 0 7 0
## 933 1 1 1
## 934 0 1 0
## 935 0 1 0
## 936 0 2 0
## 937 0 2 1
## 938 0 3 0
## 939 0 3 0
## 940 0 4 0
## 941 0 4 0
## 942 0 4 0
## 943 0 4 0
## 944 0 5 0
## 945 0 5 0
## 946 0 5 0
## 947 0 5 0
## 948 0 6 0
## 949 0 6 0
## 950 0 6 0
## 951 0 7 1
## 952 0 7 0
## 953 0 7 1
## 954 0 7 0
## 955 0 1 0
## 956 0 2 0
## 957 0 3 0
## 958 0 4 0
## 959 0 5 0
## 960 0 7 0
## 961 0 1 0
## 962 0 2 0
## 963 0 3 0
## 964 0 4 0
## 965 0 5 0
## 966 0 2 0
## 967 0 3 0
## 968 0 4 0
## 969 0 7 0
## 970 0 1 0
## 971 0 3 0
## 972 0 4 0
## 973 0 5 0
## 974 0 2 0
## 975 0 3 0
## 976 0 4 0
## 977 0 5 0
## 978 0 6 0
## 979 0 7 0
## 980 0 1 0
## 981 0 2 0
## 982 0 3 0
## 983 0 4 0
## 984 0 5 1
## 985 0 6 0
## 986 0 7 1
## 987 0 1 0
## 988 0 2 0
## 989 0 3 0
## 990 0 4 0
## 991 0 5 0
## 992 0 6 0
## 993 0 7 0
## 994 0 1 0
## 995 0 3 0
## 996 0 4 1
## 997 0 5 1
## 998 0 6 0
## 999 0 4 0
## 1000 0 4 0
## 1001 0 5 0
## 1002 0 5 0
## 1003 0 6 0
## 1004 0 7 0
## 1005 0 7 1
## 1006 0 1 0
## 1007 0 1 1
## 1008 0 2 0
## 1009 0 2 0
## 1010 0 3 0
## 1011 0 3 0
## 1012 0 4 0
## 1013 0 4 0
## 1014 0 5 0
## 1015 0 5 0
## 1016 0 7 0
## 1017 0 1 0
## 1018 0 2 0
## 1019 0 2 0
## 1020 0 3 0
## 1021 0 4 0
## 1022 0 4 0
## 1023 0 5 1
## 1024 0 5 0
## 1025 0 7 0
## 1026 0 1 0
## 1027 0 1 0
## 1028 0 2 0
## 1029 0 2 0
## 1030 0 3 0
## 1031 0 3 0
## 1032 0 4 0
## 1033 0 4 0
## 1034 0 5 0
## 1035 0 5 0
## 1036 0 7 0
## 1037 0 1 0
## 1038 1 2 1
## 1039 0 2 0
## 1040 0 3 1
## 1041 0 4 1
## 1042 0 4 0
## 1043 0 5 0
## 1044 0 5 0
## 1045 0 4 0
## 1046 0 5 0
## 1047 0 5 1
## 1048 0 6 0
## 1049 0 7 0
## 1050 0 7 1
## 1051 0 1 0
## 1052 0 1 1
## 1053 0 2 0
## 1054 0 2 0
## 1055 0 3 0
## 1056 0 3 0
## 1057 0 4 0
## 1058 0 4 0
## 1059 0 5 0
## 1060 0 5 0
## 1061 0 6 0
## 1062 0 7 0
## 1063 0 7 1
## 1064 0 1 0
## 1065 0 1 0
## 1066 0 2 0
## 1067 0 2 1
## 1068 0 3 0
## 1069 0 3 1
## 1070 0 4 0
## 1071 0 5 0
## 1072 0 6 0
## 1073 0 7 0
## 1074 0 1 0
## 1075 0 1 0
## 1076 0 2 0
## 1077 0 2 0
## 1078 0 3 0
## 1079 0 3 0
## 1080 0 4 1
## 1081 0 4 0
## 1082 0 5 0
## 1083 0 5 0
## 1084 0 6 0
## 1085 0 7 0
## 1086 0 7 1
## 1087 0 1 1
## 1088 1 1 1
## 1089 0 2 0
## 1090 1 2 1
## 1091 0 3 0
## 1092 0 4 0
## 1093 0 4 0
## 1094 0 5 0
## 1095 0 5 0
## 1096 0 6 0
## 1097 0 4 0
## 1098 0 4 0
## 1099 0 4 0
## 1100 0 5 0
## 1101 0 5 1
## 1102 0 5 0
## 1103 0 5 0
## 1104 0 5 0
## 1105 0 6 0
## 1106 0 6 1
## 1107 0 6 0
## 1108 0 7 1
## 1109 0 7 1
## 1110 0 7 0
## 1111 0 7 0
## 1112 0 7 1
## 1113 0 1 1
## 1114 0 1 1
## 1115 0 1 0
## 1116 0 1 1
## 1117 0 2 0
## 1118 0 2 0
## 1119 0 2 0
## 1120 0 2 0
## 1121 0 2 0
## 1122 0 3 0
## 1123 0 3 0
## 1124 0 3 0
## 1125 0 3 0
## 1126 0 3 0
## 1127 0 4 0
## 1128 0 4 1
## 1129 0 4 0
## 1130 0 4 1
## 1131 0 4 0
## 1132 0 5 0
## 1133 0 5 1
## 1134 0 5 0
## 1135 0 5 0
## 1136 0 5 0
## 1137 0 6 0
## 1138 0 6 1
## 1139 0 6 0
## 1140 0 7 0
## 1141 0 7 0
## 1142 0 7 1
## 1143 0 7 1
## 1144 0 7 0
## 1145 0 1 0
## 1146 0 1 0
## 1147 0 1 1
## 1148 0 1 0
## 1149 0 1 1
## 1150 0 2 0
## 1151 0 2 0
## 1152 0 2 0
## 1153 0 2 1
## 1154 0 3 0
## 1155 0 3 0
## 1156 0 3 0
## 1157 0 3 0
## 1158 0 4 0
## 1159 0 4 1
## 1160 0 4 0
## 1161 0 4 0
## 1162 0 4 0
## 1163 0 5 0
## 1164 0 5 1
## 1165 0 5 0
## 1166 0 5 1
## 1167 0 5 1
## 1168 0 6 0
## 1169 0 6 1
## 1170 0 6 0
## 1171 0 7 0
## 1172 0 7 1
## 1173 0 7 1
## 1174 0 7 1
## 1175 0 7 1
## 1176 0 1 0
## 1177 0 1 0
## 1178 0 1 0
## 1179 0 1 1
## 1180 0 1 0
## 1181 0 2 0
## 1182 0 2 0
## 1183 0 2 0
## 1184 0 2 1
## 1185 0 2 0
## 1186 0 3 0
## 1187 0 3 0
## 1188 0 3 0
## 1189 0 3 0
## 1190 0 3 0
## 1191 0 4 1
## 1192 0 4 1
## 1193 0 4 0
## 1194 0 4 0
## 1195 0 4 0
## 1196 0 5 1
## 1197 0 5 0
## 1198 0 5 0
## 1199 0 5 1
## 1200 0 6 0
## 1201 0 6 1
## 1202 0 6 0
## 1203 0 7 0
## 1204 0 7 0
## 1205 0 7 0
## 1206 0 7 1
## 1207 0 7 0
## 1208 0 1 0
## 1209 0 1 1
## 1210 0 1 1
## 1211 1 1 1
## 1212 0 1 0
## 1213 0 2 0
## 1214 1 2 1
## 1215 1 2 1
## 1216 0 2 1
## 1217 0 3 0
## 1218 0 3 1
## 1219 0 3 0
## 1220 0 3 0
## 1221 0 3 0
## 1222 0 4 0
## 1223 0 4 1
## 1224 0 4 0
## 1225 0 4 1
## 1226 0 4 0
## 1227 0 5 0
## 1228 0 5 1
## 1229 0 5 0
## 1230 0 5 1
## 1231 0 5 1
## 1232 0 6 0
## 1233 0 6 0
## 1234 0 6 0
## 1235 0 4 0
## 1236 0 4 0
## 1237 0 5 0
## 1238 0 5 0
## 1239 0 6 0
## 1240 0 7 1
## 1241 0 7 0
## 1242 0 1 0
## 1243 0 2 1
## 1244 0 2 0
## 1245 0 2 0
## 1246 0 3 1
## 1247 0 3 1
## 1248 0 3 1
## 1249 0 4 0
## 1250 0 4 0
## 1251 0 4 0
## 1252 0 5 0
## 1253 0 5 0
## 1254 0 5 0
## 1255 0 6 0
## 1256 0 6 0
## 1257 0 7 0
## 1258 0 7 0
## 1259 0 7 0
## 1260 0 1 0
## 1261 0 1 0
## 1262 0 1 0
## 1263 0 2 0
## 1264 0 2 0
## 1265 0 2 0
## 1266 0 3 0
## 1267 0 3 0
## 1268 0 3 0
## 1269 0 4 0
## 1270 0 4 0
## 1271 0 4 0
## 1272 0 5 0
## 1273 0 5 1
## 1274 0 6 0
## 1275 0 6 0
## 1276 0 7 1
## 1277 0 7 1
## 1278 0 1 1
## 1279 0 1 0
## 1280 0 1 0
## 1281 0 2 0
## 1282 0 2 0
## 1283 0 2 0
## 1284 0 3 0
## 1285 0 3 0
## 1286 0 3 1
## 1287 0 4 0
## 1288 0 4 0
## 1289 0 4 0
## 1290 0 5 0
## 1291 0 5 0
## 1292 0 6 0
## 1293 0 6 0
## 1294 0 7 1
## 1295 0 7 0
## 1296 0 7 0
## 1297 0 1 1
## 1298 0 2 0
## 1299 0 2 0
## 1300 0 2 1
## 1301 0 3 0
## 1302 0 3 1
## 1303 0 3 0
## 1304 0 4 1
## 1305 0 4 0
## 1306 0 4 0
## 1307 0 5 0
## 1308 0 5 0
## 1309 0 5 1
## 1310 0 6 0
## 1311 0 6 0
## 1312 0 4 0
## 1313 0 5 1
## 1314 0 6 0
## 1315 0 7 1
## 1316 0 1 1
## 1317 0 6 0
## 1318 0 4 0
## 1319 0 5 0
## 1320 0 1 1
## 1321 0 2 1
## 1322 0 3 0
## 1323 0 4 0
## 1324 0 5 0
## 1325 0 1 0
## 1326 0 2 0
## 1327 0 3 0
## 1328 0 4 0
## 1329 0 5 1
## 1330 0 1 0
## 1331 0 2 1
## 1332 0 3 1
## 1333 0 4 0
## 1334 0 5 1
## 1335 1 1 1
## 1336 0 3 0
## 1337 0 4 1
## 1338 0 5 1
## 1339 0 4 0
## 1340 0 5 0
## 1341 0 6 1
## 1342 0 7 1
## 1343 0 1 0
## 1344 0 2 0
## 1345 0 2 0
## 1346 0 3 0
## 1347 0 3 0
## 1348 0 4 0
## 1349 0 4 0
## 1350 0 5 0
## 1351 0 5 0
## 1352 0 6 0
## 1353 0 7 0
## 1354 0 7 0
## 1355 0 1 0
## 1356 0 1 0
## 1357 0 2 0
## 1358 0 2 0
## 1359 0 3 1
## 1360 0 3 0
## 1361 0 4 0
## 1362 0 4 0
## 1363 0 5 0
## 1364 0 5 0
## 1365 0 6 0
## 1366 0 7 1
## 1367 0 1 0
## 1368 0 1 0
## 1369 0 2 0
## 1370 0 2 0
## 1371 0 3 0
## 1372 0 3 0
## 1373 0 4 0
## 1374 0 4 0
## 1375 0 5 0
## 1376 0 5 1
## 1377 0 6 0
## 1378 0 7 0
## 1379 0 7 1
## 1380 1 1 1
## 1381 1 1 1
## 1382 0 2 1
## 1383 0 3 0
## 1384 0 3 0
## 1385 0 4 0
## 1386 0 4 1
## 1387 0 5 0
## 1388 0 5 0
## 1389 0 6 0
## 1390 0 7 0
## 1391 0 1 1
## 1392 0 1 0
## 1393 0 2 0
## 1394 0 2 0
## 1395 0 3 1
## 1396 0 3 1
## 1397 0 4 0
## 1398 0 4 0
## 1399 0 5 1
## 1400 0 5 0
## 1401 0 6 0
## 1402 0 7 0
## 1403 0 1 0
## 1404 0 1 0
## 1405 0 2 1
## 1406 0 2 1
## 1407 0 3 0
## 1408 0 3 0
## 1409 0 4 1
## 1410 0 4 0
## 1411 0 5 1
## 1412 0 5 0
## 1413 0 6 0
## 1414 0 7 1
## 1415 0 1 0
## 1416 0 1 0
## 1417 0 2 0
## 1418 0 2 0
## 1419 0 3 0
## 1420 0 3 0
## 1421 0 4 0
## 1422 0 4 0
## 1423 0 6 0
## 1424 0 7 0
## 1425 0 1 0
## 1426 1 2 1
## 1427 0 2 0
## 1428 0 3 0
## 1429 0 3 1
## 1430 0 4 0
## 1431 0 5 1
## 1432 0 5 0
## 1433 0 6 0
## 1434 0 7 1
## 1435 0 5 0
## 1436 0 6 0
## 1437 0 7 0
## 1438 0 1 1
## 1439 0 2 0
## 1440 0 3 0
## 1441 0 4 0
## 1442 0 5 0
## 1443 0 7 0
## 1444 0 2 1
## 1445 0 3 0
## 1446 0 4 0
## 1447 0 5 0
## 1448 0 7 1
## 1449 0 1 0
## 1450 0 2 0
## 1451 0 3 0
## 1452 0 4 0
## 1453 0 5 0
## 1454 0 7 0
## 1455 0 1 0
## 1456 0 3 0
## 1457 0 4 0
## 1458 0 5 0
## 1459 0 4 0
## 1460 0 5 0
## 1461 0 6 0
## 1462 0 7 0
## 1463 0 7 1
## 1464 0 1 0
## 1465 0 2 0
## 1466 0 2 0
## 1467 0 3 0
## 1468 0 3 0
## 1469 0 4 0
## 1470 0 4 0
## 1471 0 5 0
## 1472 0 5 0
## 1473 0 6 0
## 1474 0 7 0
## 1475 0 7 0
## 1476 0 1 0
## 1477 0 1 0
## 1478 0 2 1
## 1479 0 2 0
## 1480 0 3 0
## 1481 0 3 0
## 1482 0 4 0
## 1483 0 4 0
## 1484 0 5 0
## 1485 0 5 1
## 1486 0 6 1
## 1487 0 7 0
## 1488 0 7 1
## 1489 0 1 0
## 1490 0 1 0
## 1491 0 2 1
## 1492 0 2 0
## 1493 0 3 1
## 1494 0 3 1
## 1495 0 4 1
## 1496 0 4 0
## 1497 0 5 0
## 1498 0 5 0
## 1499 0 6 0
## 1500 0 7 0
## 1501 0 7 0
## 1502 0 1 0
## 1503 0 2 1
## 1504 0 3 0
## 1505 0 4 0
## 1506 0 4 0
## 1507 0 5 0
## 1508 0 5 0
## 1509 0 6 0
## 1510 0 4 0
## 1511 0 5 0
## 1512 0 7 0
## 1513 0 1 1
## 1514 0 3 0
## 1515 0 4 1
## 1516 0 5 0
## 1517 0 6 1
## 1518 0 7 0
## 1519 0 1 0
## 1520 0 2 0
## 1521 0 3 0
## 1522 0 4 0
## 1523 0 5 0
## 1524 0 6 0
## 1525 0 7 1
## 1526 0 1 0
## 1527 0 2 0
## 1528 0 4 0
## 1529 0 5 0
## 1530 0 6 0
## 1531 0 7 0
## 1532 0 2 1
## 1533 0 3 0
## 1534 0 4 0
## 1535 0 5 0
## 1536 0 6 0
## 1537 0 4 0
## 1538 0 5 0
## 1539 0 6 0
## 1540 0 7 0
## 1541 0 1 0
## 1542 0 2 0
## 1543 0 3 0
## 1544 0 4 0
## 1545 0 5 0
## 1546 0 6 0
## 1547 0 7 0
## 1548 0 1 0
## 1549 0 2 0
## 1550 0 3 0
## 1551 0 4 0
## 1552 0 5 0
## 1553 0 6 0
## 1554 0 7 0
## 1555 0 1 0
## 1556 0 2 0
## 1557 0 3 0
## 1558 0 4 0
## 1559 0 5 0
## 1560 0 6 0
## 1561 0 7 0
## 1562 0 1 1
## 1563 0 3 0
## 1564 0 4 0
## 1565 0 5 0
## 1566 0 6 0
## 1567 0 4 0
## 1568 0 4 0
## 1569 0 5 0
## 1570 0 5 0
## 1571 0 6 0
## 1572 0 7 0
## 1573 0 7 0
## 1574 0 1 0
## 1575 0 1 0
## 1576 0 2 0
## 1577 0 2 0
## 1578 0 2 0
## 1579 0 3 0
## 1580 0 3 0
## 1581 0 4 1
## 1582 0 4 0
## 1583 0 5 0
## 1584 0 5 0
## 1585 0 5 0
## 1586 0 6 0
## 1587 0 6 0
## 1588 0 7 0
## 1589 0 7 0
## 1590 0 7 0
## 1591 0 1 0
## 1592 0 1 1
## 1593 0 1 0
## 1594 0 2 1
## 1595 0 2 0
## 1596 0 2 0
## 1597 0 3 0
## 1598 0 3 0
## 1599 0 3 0
## 1600 0 4 1
## 1601 0 4 0
## 1602 0 5 1
## 1603 0 5 0
## 1604 0 5 1
## 1605 0 6 0
## 1606 0 6 0
## 1607 0 7 1
## 1608 0 1 0
## 1609 0 1 0
## 1610 0 1 0
## 1611 0 2 0
## 1612 0 2 0
## 1613 0 3 0
## 1614 0 3 0
## 1615 0 3 0
## 1616 0 4 0
## 1617 0 4 0
## 1618 0 4 0
## 1619 0 5 0
## 1620 0 5 0
## 1621 0 5 0
## 1622 0 6 0
## 1623 0 6 0
## 1624 0 7 0
## 1625 0 7 0
## 1626 0 7 0
## 1627 0 1 0
## 1628 0 1 1
## 1629 0 2 0
## 1630 0 3 1
## 1631 0 3 0
## 1632 0 3 0
## 1633 0 4 0
## 1634 0 4 0
## 1635 0 4 0
## 1636 0 5 0
## 1637 0 5 1
## 1638 0 5 1
## 1639 0 6 0
## 1640 0 6 0
## 1641 0 4 0
## 1642 0 6 0
## 1643 0 7 1
## 1644 0 1 1
## 1645 0 2 0
## 1646 0 3 0
## 1647 0 4 0
## 1648 0 5 0
## 1649 0 6 0
## 1650 0 7 0
## 1651 0 1 0
## 1652 0 2 0
## 1653 0 3 0
## 1654 0 5 0
## 1655 0 6 0
## 1656 0 7 1
## 1657 0 1 0
## 1658 0 2 0
## 1659 0 3 1
## 1660 0 4 0
## 1661 0 5 1
## 1662 0 6 0
## 1663 0 7 0
## 1664 1 2 1
## 1665 0 3 1
## 1666 0 4 0
## 1667 0 5 0
## 1668 0 6 0
## 1669 0 4 0
## 1670 0 4 0
## 1671 0 5 0
## 1672 0 5 0
## 1673 0 6 0
## 1674 0 6 0
## 1675 0 7 1
## 1676 0 7 0
## 1677 0 1 1
## 1678 0 1 0
## 1679 0 2 0
## 1680 0 2 1
## 1681 0 3 1
## 1682 0 3 1
## 1683 0 4 1
## 1684 0 4 0
## 1685 0 5 1
## 1686 0 5 0
## 1687 0 6 0
## 1688 0 6 0
## 1689 0 7 0
## 1690 0 7 0
## 1691 0 1 0
## 1692 0 1 0
## 1693 0 2 1
## 1694 0 2 0
## 1695 0 3 0
## 1696 0 3 0
## 1697 0 4 0
## 1698 0 5 1
## 1699 0 5 0
## 1700 0 6 0
## 1701 0 6 1
## 1702 0 7 1
## 1703 0 7 1
## 1704 0 1 0
## 1705 0 1 0
## 1706 0 2 0
## 1707 0 2 0
## 1708 0 3 0
## 1709 0 3 0
## 1710 0 4 0
## 1711 0 4 0
## 1712 0 5 0
## 1713 0 5 0
## 1714 0 6 0
## 1715 0 6 1
## 1716 0 7 1
## 1717 0 7 1
## 1718 0 1 1
## 1719 0 1 1
## 1720 1 2 1
## 1721 1 2 1
## 1722 0 3 0
## 1723 0 3 1
## 1724 0 4 1
## 1725 0 4 0
## 1726 0 5 0
## 1727 0 5 0
## 1728 0 6 0
## 1729 0 6 0
## 1730 0 4 0
## 1731 0 5 0
## 1732 0 6 0
## 1733 0 2 1
## 1734 0 3 1
## 1735 0 4 0
## 1736 0 5 0
## 1737 0 6 0
## 1738 0 7 0
## 1739 0 1 0
## 1740 0 2 1
## 1741 0 3 0
## 1742 0 4 1
## 1743 0 5 1
## 1744 0 6 0
## 1745 0 1 0
## 1746 0 2 1
## 1747 0 3 1
## 1748 0 4 1
## 1749 0 5 0
## 1750 0 6 0
## 1751 0 7 0
## 1752 0 1 1
## 1753 0 3 1
## 1754 0 4 0
## 1755 0 5 1
## 1756 0 6 0
## 1757 0 6 0
## 1758 0 4 0
## 1759 0 4 0
## 1760 0 5 0
## 1761 0 5 0
## 1762 0 6 0
## 1763 0 7 1
## 1764 0 1 0
## 1765 0 1 1
## 1766 0 2 0
## 1767 0 2 1
## 1768 0 3 0
## 1769 0 3 1
## 1770 0 4 0
## 1771 0 4 0
## 1772 0 5 0
## 1773 0 5 0
## 1774 0 6 0
## 1775 0 7 0
## 1776 0 7 0
## 1777 0 1 0
## 1778 0 1 1
## 1779 0 2 0
## 1780 0 2 1
## 1781 0 3 0
## 1782 0 3 1
## 1783 0 4 0
## 1784 0 5 0
## 1785 0 5 1
## 1786 0 6 0
## 1787 0 1 1
## 1788 0 2 0
## 1789 0 2 0
## 1790 0 3 0
## 1791 0 3 1
## 1792 0 4 1
## 1793 0 4 1
## 1794 0 5 0
## 1795 0 5 0
## 1796 0 6 0
## 1797 0 7 0
## 1798 0 7 0
## 1799 0 1 0
## 1800 1 2 1
## 1801 0 3 0
## 1802 0 3 0
## 1803 0 4 0
## 1804 0 4 0
## 1805 0 5 0
## 1806 0 5 0
## 1807 0 6 0
## 1808 0 7 0
## 1809 0 1 0
## 1810 0 2 0
## 1811 0 3 0
## 1812 0 4 0
## 1813 0 5 0
## 1814 0 6 0
## 1815 0 7 0
## 1816 0 1 0
## 1817 0 2 0
## 1818 0 3 0
## 1819 0 4 0
## 1820 0 5 0
## 1821 0 6 1
## 1822 0 7 0
## 1823 0 1 0
## 1824 0 2 0
## 1825 0 3 0
## 1826 0 4 0
## 1827 0 5 0
## 1828 0 6 0
## 1829 0 7 0
## 1830 0 1 0
## 1831 0 3 0
## 1832 0 4 0
## 1833 0 5 0
## 1834 0 6 0
## 1835 0 4 0
## 1836 0 5 0
## 1837 0 6 0
## 1838 0 6 0
## 1839 0 7 0
## 1840 0 7 1
## 1841 0 1 0
## 1842 0 2 0
## 1843 0 2 0
## 1844 0 3 0
## 1845 0 3 1
## 1846 0 4 0
## 1847 0 4 0
## 1848 0 5 0
## 1849 0 5 1
## 1850 0 6 0
## 1851 0 6 0
## 1852 0 7 0
## 1853 0 7 1
## 1854 0 1 0
## 1855 0 1 0
## 1856 0 2 0
## 1857 0 2 1
## 1858 0 3 0
## 1859 0 3 0
## 1860 0 4 0
## 1861 0 4 0
## 1862 0 5 0
## 1863 0 5 1
## 1864 0 6 0
## 1865 0 6 0
## 1866 0 7 1
## 1867 0 7 1
## 1868 0 1 0
## 1869 0 1 1
## 1870 0 2 0
## 1871 0 2 0
## 1872 0 3 0
## 1873 0 3 0
## 1874 0 4 0
## 1875 0 4 0
## 1876 0 5 0
## 1877 0 5 0
## 1878 0 6 0
## 1879 0 6 0
## 1880 0 7 0
## 1881 0 7 0
## 1882 1 1 1
## 1883 0 2 1
## 1884 1 2 1
## 1885 0 3 0
## 1886 0 3 0
## 1887 0 4 0
## 1888 0 4 0
## 1889 0 5 0
## 1890 0 5 0
## 1891 0 6 0
## 1892 0 6 0
## 1893 0 4 0
## 1894 0 4 0
## 1895 0 4 0
## 1896 0 5 0
## 1897 0 5 0
## 1898 0 5 0
## 1899 0 6 0
## 1900 0 7 1
## 1901 0 7 0
## 1902 0 7 1
## 1903 0 7 1
## 1904 0 1 1
## 1905 0 1 0
## 1906 0 1 1
## 1907 0 2 0
## 1908 0 2 0
## 1909 0 2 1
## 1910 0 2 1
## 1911 0 3 1
## 1912 0 3 0
## 1913 0 3 1
## 1914 0 3 1
## 1915 0 4 0
## 1916 0 4 1
## 1917 0 4 0
## 1918 0 4 0
## 1919 0 5 1
## 1920 0 5 0
## 1921 0 5 0
## 1922 0 5 0
## 1923 0 6 0
## 1924 0 7 0
## 1925 0 7 0
## 1926 0 7 0
## 1927 0 7 0
## 1928 0 1 0
## 1929 0 1 0
## 1930 0 1 0
## 1931 0 1 0
## 1932 0 2 1
## 1933 0 2 0
## 1934 0 2 1
## 1935 0 2 1
## 1936 0 3 0
## 1937 0 3 0
## 1938 0 3 0
## 1939 0 3 0
## 1940 0 4 1
## 1941 0 4 1
## 1942 0 4 1
## 1943 0 4 1
## 1944 0 5 1
## 1945 0 5 1
## 1946 0 5 1
## 1947 0 6 0
## 1948 0 7 1
## 1949 0 7 0
## 1950 0 7 1
## 1951 0 1 1
## 1952 0 1 0
## 1953 0 1 0
## 1954 0 1 1
## 1955 0 2 1
## 1956 0 2 0
## 1957 0 2 0
## 1958 0 2 0
## 1959 0 3 0
## 1960 0 3 0
## 1961 0 3 0
## 1962 0 3 0
## 1963 0 4 0
## 1964 0 4 0
## 1965 0 4 0
## 1966 0 4 0
## 1967 0 5 0
## 1968 0 5 0
## 1969 0 5 1
## 1970 0 5 0
## 1971 0 6 0
## 1972 0 7 0
## 1973 0 7 0
## 1974 0 7 0
## 1975 0 7 1
## 1976 1 1 1
## 1977 0 1 0
## 1978 0 1 1
## 1979 0 1 1
## 1980 0 3 1
## 1981 0 3 0
## 1982 0 3 1
## 1983 0 3 0
## 1984 0 4 0
## 1985 0 4 0
## 1986 0 4 0
## 1987 0 4 0
## 1988 0 5 0
## 1989 0 5 0
## 1990 0 5 1
## 1991 0 6 0
## 1992 0 1 1
## 1993 0 2 0
## 1994 0 3 0
## 1995 0 4 0
## 1996 0 5 0
## 1997 0 7 0
## 1998 0 1 0
## 1999 0 2 0
## 2000 0 3 1
## 2001 0 4 1
## 2002 0 5 0
## 2003 0 1 0
## 2004 0 2 0
## 2005 0 3 0
## 2006 0 4 0
## 2007 0 5 0
## 2008 0 7 0
## 2009 0 1 0
## 2010 0 4 0
## 2011 0 5 0
## 2012 0 7 0
## 2013 0 1 0
## 2014 0 2 0
## 2015 0 3 1
## 2016 0 4 1
## 2017 0 5 0
## 2018 0 7 0
## 2019 0 1 0
## 2020 0 2 0
## 2021 0 3 1
## 2022 0 5 0
## 2023 0 7 0
## 2024 0 1 0
## 2025 0 2 0
## 2026 0 3 0
## 2027 0 4 0
## 2028 0 5 0
## 2029 0 7 0
## 2030 0 1 0
## 2031 0 3 1
## 2032 0 4 0
## 2033 0 5 0
## 2034 0 4 0
## 2035 0 5 0
## 2036 0 6 0
## 2037 0 7 0
## 2038 0 1 0
## 2039 0 2 0
## 2040 0 3 0
## 2041 0 4 0
## 2042 0 5 0
## 2043 0 6 0
## 2044 0 7 0
## 2045 0 1 0
## 2046 0 2 1
## 2047 0 3 1
## 2048 0 4 1
## 2049 0 5 0
## 2050 0 6 0
## 2051 0 7 0
## 2052 0 1 0
## 2053 0 2 0
## 2054 0 3 0
## 2055 0 4 0
## 2056 0 5 0
## 2057 0 6 0
## 2058 0 7 0
## 2059 0 1 0
## 2060 0 2 1
## 2061 0 3 1
## 2062 0 4 0
## 2063 0 5 0
## 2064 0 6 0
## 2065 0 4 0
## 2066 0 5 0
## 2067 0 5 0
## 2068 0 7 0
## 2069 0 1 0
## 2070 0 1 0
## 2071 0 2 0
## 2072 0 2 1
## 2073 0 3 0
## 2074 0 3 0
## 2075 0 4 0
## 2076 0 4 0
## 2077 0 5 0
## 2078 0 5 0
## 2079 0 7 0
## 2080 0 1 0
## 2081 0 1 0
## 2082 0 2 0
## 2083 0 2 0
## 2084 0 3 0
## 2085 0 3 0
## 2086 0 4 1
## 2087 0 4 1
## 2088 0 5 0
## 2089 0 5 0
## 2090 0 7 0
## 2091 0 1 0
## 2092 0 1 0
## 2093 0 2 0
## 2094 0 2 0
## 2095 0 3 0
## 2096 0 3 0
## 2097 0 4 1
## 2098 0 4 0
## 2099 0 5 0
## 2100 0 5 0
## 2101 0 7 1
## 2102 0 1 1
## 2103 0 1 0
## 2104 0 3 0
## 2105 0 3 1
## 2106 0 4 0
## 2107 0 4 0
## 2108 0 5 0
## 2109 0 5 0
## 2110 0 4 0
## 2111 0 4 0
## 2112 0 4 0
## 2113 0 5 1
## 2114 0 5 0
## 2115 0 6 1
## 2116 0 6 0
## 2117 0 6 0
## 2118 0 7 0
## 2119 0 7 0
## 2120 0 7 1
## 2121 0 1 1
## 2122 0 1 0
## 2123 0 1 1
## 2124 0 2 1
## 2125 0 2 0
## 2126 0 2 0
## 2127 0 3 0
## 2128 0 3 0
## 2129 0 4 1
## 2130 0 4 0
## 2131 0 4 0
## 2132 0 5 0
## 2133 0 5 0
## 2134 0 5 0
## 2135 0 6 0
## 2136 0 6 0
## 2137 0 6 0
## 2138 0 7 0
## 2139 0 7 1
## 2140 0 7 0
## 2141 0 1 0
## 2142 0 1 0
## 2143 0 1 0
## 2144 0 2 0
## 2145 0 2 0
## 2146 0 2 0
## 2147 0 3 0
## 2148 0 3 0
## 2149 0 3 1
## 2150 0 4 1
## 2151 0 4 0
## 2152 0 4 0
## 2153 0 5 0
## 2154 0 5 0
## 2155 0 5 0
## 2156 0 6 1
## 2157 0 6 1
## 2158 0 6 1
## 2159 0 7 0
## 2160 0 7 0
## 2161 0 7 0
## 2162 0 1 1
## 2163 0 1 0
## 2164 0 1 1
## 2165 0 2 0
## 2166 0 2 0
## 2167 0 2 0
## 2168 0 3 1
## 2169 0 3 0
## 2170 0 3 0
## 2171 0 4 0
## 2172 0 4 0
## 2173 0 4 0
## 2174 0 5 1
## 2175 0 5 0
## 2176 0 5 1
## 2177 0 6 0
## 2178 0 6 0
## 2179 0 6 0
## 2180 0 7 1
## 2181 1 7 1
## 2182 0 7 1
## 2183 0 1 1
## 2184 0 1 0
## 2185 0 1 1
## 2186 1 2 1
## 2187 0 2 1
## 2188 0 3 1
## 2189 0 3 0
## 2190 0 3 0
## 2191 0 4 0
## 2192 0 4 0
## 2193 0 4 1
## 2194 0 5 0
## 2195 0 5 1
## 2196 0 5 0
## 2197 0 6 0
## 2198 0 6 0
## 2199 0 6 0
## 2200 0 7 0
## 2201 0 7 1
class(fd[cols])
## [1] "data.frame"
fd
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather DAY_WEEK Flight.Status
## 1 600 MQ JFK DCA 0 4 0
## 2 600 MQ JFK DCA 0 5 0
## 3 600 MQ JFK DCA 0 6 0
## 4 600 MQ JFK DCA 0 7 0
## 5 600 MQ JFK DCA 0 1 0
## 6 600 MQ JFK DCA 0 2 0
## 7 600 MQ JFK DCA 0 3 0
## 8 600 MQ JFK DCA 0 4 0
## 9 600 MQ JFK DCA 0 5 0
## 10 600 MQ JFK DCA 0 6 1
## 11 600 MQ JFK DCA 0 7 0
## 12 600 MQ JFK DCA 0 1 0
## 13 600 MQ JFK DCA 0 2 0
## 14 600 MQ JFK DCA 0 3 0
## 15 600 MQ JFK DCA 0 4 0
## 16 600 MQ JFK DCA 0 5 0
## 17 600 MQ JFK DCA 0 6 0
## 18 600 MQ JFK DCA 0 7 1
## 19 600 MQ JFK DCA 0 1 0
## 20 600 MQ JFK DCA 0 2 0
## 21 600 MQ JFK DCA 0 3 0
## 22 600 MQ JFK DCA 0 4 0
## 23 600 MQ JFK DCA 0 5 0
## 24 600 MQ JFK DCA 0 6 0
## 25 600 MQ JFK DCA 0 4 0
## 26 600 MQ JFK DCA 0 6 0
## 27 630 DH EWR IAD 0 5 0
## 28 630 DH EWR IAD 0 6 0
## 29 630 DL LGA DCA 0 1 0
## 30 630 US LGA DCA 0 1 1
## 31 630 DH EWR IAD 0 1 0
## 32 630 DL LGA DCA 0 2 0
## 33 630 US LGA DCA 0 2 0
## 34 630 DH EWR IAD 0 2 0
## 35 630 DL LGA DCA 0 3 0
## 36 630 US LGA DCA 0 3 0
## 37 630 DH EWR IAD 0 3 0
## 38 630 DL LGA DCA 0 4 0
## 39 630 US LGA DCA 0 4 0
## 40 630 DH EWR IAD 0 4 0
## 41 630 DL LGA DCA 0 5 0
## 42 630 US LGA DCA 0 5 0
## 43 630 DH EWR IAD 0 5 0
## 44 630 DL LGA DCA 0 1 0
## 45 630 US LGA DCA 0 1 0
## 46 630 DH EWR IAD 0 1 0
## 47 630 DL LGA DCA 0 2 0
## 48 630 US LGA DCA 0 2 0
## 49 630 DH EWR IAD 0 2 0
## 50 630 DL LGA DCA 0 3 0
## 51 630 US LGA DCA 0 3 0
## 52 630 DH EWR IAD 0 3 0
## 53 630 DL LGA DCA 0 4 0
## 54 630 US LGA DCA 0 4 1
## 55 630 DH EWR IAD 0 4 0
## 56 630 DL LGA DCA 0 5 0
## 57 630 US LGA DCA 0 5 0
## 58 630 DH EWR IAD 0 5 1
## 59 630 US LGA DCA 0 1 0
## 60 630 DH EWR IAD 0 1 0
## 61 630 DL LGA DCA 0 2 0
## 62 630 US LGA DCA 0 2 0
## 63 630 DH EWR IAD 0 2 0
## 64 630 DL LGA DCA 0 3 0
## 65 630 US LGA DCA 0 3 0
## 66 630 DH EWR IAD 0 3 0
## 67 630 DL LGA DCA 0 4 0
## 68 630 US LGA DCA 0 4 0
## 69 630 DH EWR IAD 0 4 0
## 70 630 DL LGA DCA 0 5 0
## 71 630 US LGA DCA 0 5 0
## 72 630 DH EWR IAD 0 5 0
## 73 630 US LGA DCA 0 1 1
## 74 630 DH EWR IAD 0 1 0
## 75 630 US LGA DCA 0 2 0
## 76 630 US LGA DCA 0 3 0
## 77 630 DH EWR IAD 0 3 0
## 78 630 DL LGA DCA 0 4 0
## 79 630 US LGA DCA 0 4 0
## 80 630 DH EWR IAD 0 4 0
## 81 630 DL LGA DCA 0 5 0
## 82 630 US LGA DCA 0 5 0
## 83 630 DH EWR IAD 0 5 0
## 84 640 DH LGA IAD 0 5 0
## 85 640 DH LGA IAD 0 6 0
## 86 640 DH LGA IAD 0 7 0
## 87 640 DH LGA IAD 0 1 1
## 88 640 DH LGA IAD 0 2 0
## 89 640 DH LGA IAD 0 3 0
## 90 640 DH LGA IAD 0 4 0
## 91 640 DH LGA IAD 0 5 1
## 92 640 DH LGA IAD 0 1 1
## 93 640 DH LGA IAD 0 2 1
## 94 640 DH LGA IAD 0 3 0
## 95 640 DH LGA IAD 0 5 0
## 96 640 DH LGA IAD 0 1 1
## 97 640 DH LGA IAD 0 2 0
## 98 640 DH LGA IAD 0 3 1
## 99 640 DH LGA IAD 0 4 0
## 100 640 DH LGA IAD 0 5 0
## 101 640 DH LGA IAD 0 1 1
## 102 640 DH LGA IAD 1 2 1
## 103 640 DH LGA IAD 0 3 0
## 104 640 DH LGA IAD 0 4 1
## 105 640 DH LGA IAD 0 5 0
## 106 645 RU EWR DCA 0 2 0
## 107 645 RU EWR DCA 0 3 0
## 108 645 RU EWR DCA 0 4 1
## 109 645 RU EWR DCA 0 5 0
## 110 645 RU EWR DCA 0 6 0
## 111 645 RU EWR DCA 0 1 0
## 112 645 RU EWR DCA 0 2 0
## 113 645 RU EWR DCA 0 3 0
## 114 645 RU EWR DCA 0 4 0
## 115 645 RU EWR DCA 0 5 0
## 116 645 RU EWR DCA 0 6 0
## 117 645 RU EWR DCA 0 1 0
## 118 645 RU EWR DCA 0 2 0
## 119 645 RU EWR DCA 0 3 0
## 120 645 RU EWR DCA 0 4 0
## 121 645 RU EWR DCA 0 5 0
## 122 645 RU EWR DCA 0 6 0
## 123 645 RU EWR DCA 0 2 0
## 124 645 RU EWR DCA 0 4 0
## 125 645 RU EWR DCA 0 5 0
## 126 645 RU EWR DCA 0 6 0
## 127 700 RU EWR BWI 0 4 0
## 128 700 US LGA DCA 0 5 0
## 129 700 RU EWR BWI 0 5 0
## 130 700 RU EWR IAD 0 5 0
## 131 700 RU EWR DCA 0 5 0
## 132 700 US LGA DCA 0 6 0
## 133 700 RU EWR BWI 0 6 0
## 134 700 RU EWR IAD 0 6 0
## 135 700 RU EWR DCA 0 6 0
## 136 700 MQ LGA DCA 0 1 0
## 137 700 US LGA DCA 0 1 0
## 138 700 RU EWR BWI 0 1 1
## 139 700 RU EWR DCA 0 1 0
## 140 700 RU EWR IAD 0 1 0
## 141 700 MQ LGA DCA 0 2 0
## 142 700 US LGA DCA 0 2 0
## 143 700 RU EWR BWI 0 2 0
## 144 700 RU EWR IAD 0 2 0
## 145 700 MQ LGA DCA 0 3 0
## 146 700 US LGA DCA 0 3 0
## 147 700 RU EWR BWI 0 3 0
## 148 700 RU EWR IAD 0 3 1
## 149 700 MQ LGA DCA 0 4 0
## 150 700 US LGA DCA 0 4 0
## 151 700 RU EWR BWI 0 4 0
## 152 700 RU EWR IAD 0 4 0
## 153 700 US LGA DCA 0 5 0
## 154 700 RU EWR BWI 0 5 0
## 155 700 RU EWR IAD 0 5 1
## 156 700 US LGA DCA 0 6 0
## 157 700 RU EWR BWI 0 6 0
## 158 700 RU EWR IAD 0 6 0
## 159 700 MQ LGA DCA 0 1 1
## 160 700 US LGA DCA 0 1 1
## 161 700 RU EWR BWI 0 1 0
## 162 700 RU EWR IAD 0 1 0
## 163 700 MQ LGA DCA 0 2 0
## 164 700 US LGA DCA 0 2 0
## 165 700 RU EWR BWI 0 2 0
## 166 700 RU EWR IAD 0 2 0
## 167 700 MQ LGA DCA 0 3 1
## 168 700 US LGA DCA 0 3 0
## 169 700 RU EWR BWI 0 3 0
## 170 700 RU EWR IAD 0 3 0
## 171 700 RU EWR IAD 0 4 1
## 172 700 US LGA DCA 0 5 0
## 173 700 RU EWR BWI 0 5 0
## 174 700 RU EWR IAD 0 5 0
## 175 700 US LGA DCA 0 6 0
## 176 700 RU EWR BWI 0 6 0
## 177 700 RU EWR IAD 0 6 0
## 178 700 MQ LGA DCA 0 1 1
## 179 700 US LGA DCA 0 1 0
## 180 700 RU EWR BWI 0 1 0
## 181 700 RU EWR IAD 0 1 0
## 182 700 MQ LGA DCA 0 2 0
## 183 700 US LGA DCA 0 2 0
## 184 700 RU EWR BWI 0 2 0
## 185 700 RU EWR IAD 0 2 1
## 186 700 MQ LGA DCA 0 3 0
## 187 700 US LGA DCA 0 3 0
## 188 700 RU EWR BWI 0 3 0
## 189 700 RU EWR IAD 0 3 0
## 190 700 MQ LGA DCA 0 4 0
## 191 700 US LGA DCA 0 4 0
## 192 700 RU EWR BWI 0 4 0
## 193 700 RU EWR IAD 0 4 0
## 194 700 MQ LGA DCA 0 5 0
## 195 700 US LGA DCA 0 5 0
## 196 700 RU EWR BWI 0 5 0
## 197 700 RU EWR IAD 0 5 0
## 198 700 US LGA DCA 0 6 0
## 199 700 RU EWR BWI 0 6 1
## 200 700 RU EWR IAD 0 6 1
## 201 700 US LGA DCA 0 1 1
## 202 700 MQ LGA DCA 0 2 1
## 203 700 US LGA DCA 0 2 0
## 204 700 RU EWR BWI 0 2 1
## 205 700 RU EWR IAD 1 2 1
## 206 700 US LGA DCA 0 3 0
## 207 700 RU EWR IAD 0 3 0
## 208 700 MQ LGA DCA 0 4 1
## 209 700 US LGA DCA 0 4 1
## 210 700 RU EWR BWI 0 4 0
## 211 700 RU EWR IAD 0 4 0
## 212 700 MQ LGA DCA 0 5 0
## 213 700 US LGA DCA 0 5 0
## 214 700 RU EWR BWI 0 5 0
## 215 700 RU EWR IAD 0 5 1
## 216 700 US LGA DCA 0 6 0
## 217 700 RU EWR BWI 0 6 0
## 218 700 RU EWR IAD 0 6 0
## 219 730 MQ JFK DCA 0 7 0
## 220 730 DL LGA DCA 0 1 0
## 221 730 DL LGA DCA 0 2 0
## 222 730 DL LGA DCA 0 4 0
## 223 730 DL LGA DCA 0 5 1
## 224 730 DL LGA DCA 0 6 0
## 225 730 DL LGA DCA 0 1 0
## 226 730 DL LGA DCA 0 2 0
## 227 730 DL LGA DCA 0 3 0
## 228 730 DL LGA DCA 0 4 1
## 229 730 DL LGA DCA 0 5 0
## 230 730 DL LGA DCA 0 6 0
## 231 730 DL LGA DCA 0 1 0
## 232 730 DL LGA DCA 0 2 0
## 233 730 DL LGA DCA 0 3 0
## 234 730 DL LGA DCA 0 4 0
## 235 730 DL LGA DCA 0 5 0
## 236 730 DL LGA DCA 0 6 0
## 237 730 DL LGA DCA 1 1 1
## 238 730 DL LGA DCA 0 2 0
## 239 730 DL LGA DCA 0 3 0
## 240 730 DL LGA DCA 0 4 0
## 241 730 DL LGA DCA 0 5 0
## 242 730 DL LGA DCA 0 6 0
## 243 735 CO EWR DCA 0 2 0
## 244 735 CO EWR DCA 0 3 0
## 245 735 CO EWR DCA 0 4 0
## 246 735 CO EWR DCA 0 5 0
## 247 735 CO EWR DCA 0 1 0
## 248 735 CO EWR DCA 0 2 0
## 249 735 CO EWR DCA 0 3 0
## 250 735 CO EWR DCA 0 4 1
## 251 735 CO EWR DCA 0 5 0
## 252 735 CO EWR DCA 0 1 0
## 253 735 CO EWR DCA 0 2 0
## 254 735 CO EWR DCA 0 3 0
## 255 735 CO EWR DCA 0 4 0
## 256 735 CO EWR DCA 0 5 0
## 257 735 CO EWR DCA 1 1 1
## 258 735 CO EWR DCA 0 4 0
## 259 735 CO EWR DCA 0 5 0
## 260 759 CO EWR DCA 0 5 0
## 261 759 CO EWR DCA 0 1 0
## 262 800 MQ LGA DCA 0 1 0
## 263 800 US LGA DCA 0 1 0
## 264 800 MQ LGA DCA 0 2 0
## 265 800 US LGA DCA 0 2 0
## 266 800 MQ LGA DCA 0 3 0
## 267 800 US LGA DCA 0 3 0
## 268 800 MQ LGA DCA 0 4 0
## 269 800 US LGA DCA 0 4 0
## 270 800 MQ LGA DCA 0 5 1
## 271 800 US LGA DCA 0 5 0
## 272 800 MQ LGA DCA 0 1 0
## 273 800 US LGA DCA 0 1 0
## 274 800 MQ LGA DCA 0 2 0
## 275 800 US LGA DCA 0 2 0
## 276 800 MQ LGA DCA 0 3 0
## 277 800 US LGA DCA 0 3 0
## 278 800 MQ LGA DCA 0 4 1
## 279 800 US LGA DCA 0 4 0
## 280 800 MQ LGA DCA 0 5 1
## 281 800 US LGA DCA 0 5 0
## 282 800 MQ LGA DCA 0 1 1
## 283 800 US LGA DCA 0 1 0
## 284 800 MQ LGA DCA 0 2 0
## 285 800 US LGA DCA 0 2 0
## 286 800 MQ LGA DCA 0 3 0
## 287 800 US LGA DCA 0 3 0
## 288 800 MQ LGA DCA 0 4 0
## 289 800 US LGA DCA 0 4 0
## 290 800 MQ LGA DCA 0 5 0
## 291 800 US LGA DCA 0 5 0
## 292 800 MQ LGA DCA 1 1 1
## 293 800 US LGA DCA 0 1 0
## 294 800 MQ LGA DCA 0 2 0
## 295 800 US LGA DCA 0 2 0
## 296 800 MQ LGA DCA 0 3 1
## 297 800 US LGA DCA 0 3 1
## 298 800 MQ LGA DCA 0 4 0
## 299 800 US LGA DCA 0 4 0
## 300 800 MQ LGA DCA 1 5 1
## 301 800 US LGA DCA 0 5 0
## 302 830 DL LGA DCA 0 6 0
## 303 830 DL LGA DCA 0 7 0
## 304 830 DL LGA DCA 0 1 0
## 305 830 DL LGA DCA 0 2 0
## 306 830 DL LGA DCA 0 3 0
## 307 830 DL LGA DCA 0 4 0
## 308 830 DL LGA DCA 0 5 0
## 309 830 DL LGA DCA 0 6 0
## 310 830 DL LGA DCA 0 7 0
## 311 830 DL LGA DCA 0 1 0
## 312 830 DL LGA DCA 0 2 0
## 313 830 DL LGA DCA 0 3 0
## 314 830 DL LGA DCA 0 5 1
## 315 830 DL LGA DCA 0 6 0
## 316 830 DL LGA DCA 0 7 0
## 317 830 DL LGA DCA 0 1 0
## 318 830 DL LGA DCA 0 2 0
## 319 830 DL LGA DCA 0 3 0
## 320 830 DL LGA DCA 0 4 0
## 321 830 DL LGA DCA 0 5 0
## 322 830 DL LGA DCA 0 6 0
## 323 830 DL LGA DCA 0 7 0
## 324 830 DL LGA DCA 0 2 1
## 325 830 DL LGA DCA 0 4 1
## 326 830 DL LGA DCA 0 5 0
## 327 830 DL LGA DCA 0 6 1
## 328 840 DH JFK IAD 0 4 0
## 329 840 DH EWR IAD 0 4 0
## 330 840 DH JFK IAD 0 5 0
## 331 840 DH EWR IAD 0 5 0
## 332 840 DH JFK IAD 0 6 0
## 333 840 DH EWR IAD 0 6 1
## 334 840 DH JFK IAD 0 7 0
## 335 840 DH EWR IAD 0 7 0
## 336 840 DH JFK IAD 0 1 1
## 337 840 DH EWR IAD 0 1 0
## 338 840 DH JFK IAD 0 2 0
## 339 840 DH EWR IAD 0 2 0
## 340 840 DH JFK IAD 0 3 0
## 341 840 DH EWR IAD 0 3 0
## 342 840 DH JFK IAD 0 4 0
## 343 840 DH EWR IAD 0 4 0
## 344 840 DH JFK IAD 0 5 1
## 345 840 DH EWR IAD 0 5 0
## 346 840 DH JFK IAD 0 6 1
## 347 840 DH EWR IAD 0 6 0
## 348 840 DH JFK IAD 0 7 0
## 349 840 DH EWR IAD 0 7 0
## 350 840 DH JFK IAD 0 1 0
## 351 840 DH EWR IAD 0 1 0
## 352 840 DH JFK IAD 0 2 0
## 353 840 DH EWR IAD 0 2 0
## 354 840 DH JFK IAD 0 3 0
## 355 840 DH EWR IAD 0 3 0
## 356 840 DH JFK IAD 0 4 0
## 357 840 DH EWR IAD 0 4 0
## 358 840 DH JFK IAD 0 5 0
## 359 840 DH EWR IAD 0 5 0
## 360 840 DH JFK IAD 0 6 0
## 361 840 DH EWR IAD 0 6 0
## 362 840 DH JFK IAD 0 7 0
## 363 840 DH EWR IAD 0 7 0
## 364 840 DH JFK IAD 0 1 0
## 365 840 DH EWR IAD 0 1 0
## 366 840 DH JFK IAD 0 2 0
## 367 840 DH EWR IAD 0 2 0
## 368 840 DH JFK IAD 0 3 0
## 369 840 DH EWR IAD 0 3 0
## 370 840 DH JFK IAD 0 4 0
## 371 840 DH EWR IAD 0 4 0
## 372 840 DH JFK IAD 0 5 0
## 373 840 DH EWR IAD 0 5 0
## 374 840 DH JFK IAD 0 6 0
## 375 840 DH EWR IAD 0 6 0
## 376 840 DH JFK IAD 0 7 0
## 377 840 DH EWR IAD 0 7 0
## 378 840 DH JFK IAD 0 1 0
## 379 840 DH EWR IAD 0 1 0
## 380 840 DH JFK IAD 0 2 1
## 381 840 DH EWR IAD 0 2 1
## 382 840 DH JFK IAD 0 3 1
## 383 840 DH EWR IAD 0 3 0
## 384 840 DH JFK IAD 0 4 0
## 385 840 DH EWR IAD 0 4 1
## 386 840 DH JFK IAD 0 5 0
## 387 840 DH EWR IAD 0 5 0
## 388 840 DH JFK IAD 0 6 1
## 389 840 DH EWR IAD 0 6 0
## 390 845 RU EWR IAD 0 7 0
## 391 845 RU EWR IAD 0 7 0
## 392 845 RU EWR IAD 0 7 0
## 393 850 UA LGA IAD 0 4 0
## 394 850 UA LGA IAD 0 5 0
## 395 850 UA LGA IAD 0 6 0
## 396 850 UA LGA IAD 0 7 0
## 397 850 UA LGA IAD 0 1 0
## 398 850 UA LGA IAD 0 2 0
## 399 850 UA LGA IAD 0 3 0
## 400 850 UA LGA IAD 0 4 0
## 401 850 UA LGA IAD 0 5 1
## 402 850 UA LGA IAD 0 6 0
## 403 850 UA LGA IAD 0 7 0
## 404 850 UA LGA IAD 0 1 0
## 405 850 UA LGA IAD 0 2 0
## 406 850 UA LGA IAD 0 3 0
## 407 850 UA LGA IAD 0 4 1
## 408 850 UA LGA IAD 0 5 1
## 409 850 UA LGA IAD 0 6 0
## 410 850 UA LGA IAD 0 7 0
## 411 850 UA LGA IAD 0 1 0
## 412 850 UA LGA IAD 0 2 0
## 413 850 UA LGA IAD 0 3 0
## 414 850 UA LGA IAD 0 4 0
## 415 850 UA LGA IAD 0 5 0
## 416 850 UA LGA IAD 0 6 0
## 417 850 UA LGA IAD 0 7 0
## 418 850 UA LGA IAD 1 1 1
## 419 850 UA LGA IAD 1 2 1
## 420 850 UA LGA IAD 0 3 0
## 421 850 UA LGA IAD 0 4 0
## 422 850 UA LGA IAD 0 5 0
## 423 850 UA LGA IAD 0 6 0
## 424 900 MQ LGA DCA 0 4 0
## 425 900 US LGA DCA 0 4 0
## 426 900 MQ LGA DCA 0 5 0
## 427 900 US LGA DCA 0 5 0
## 428 900 RU EWR DCA 0 5 0
## 429 900 RU EWR IAD 0 5 0
## 430 900 MQ LGA DCA 0 6 0
## 431 900 US LGA DCA 0 6 0
## 432 900 US LGA DCA 0 7 0
## 433 900 RU EWR IAD 0 7 0
## 434 900 MQ LGA DCA 0 1 0
## 435 900 US LGA DCA 0 1 0
## 436 900 RU EWR DCA 0 1 1
## 437 900 RU EWR IAD 0 1 0
## 438 900 MQ LGA DCA 0 2 0
## 439 900 US LGA DCA 0 2 0
## 440 900 RU EWR DCA 0 2 0
## 441 900 MQ LGA DCA 0 3 0
## 442 900 US LGA DCA 0 3 0
## 443 900 RU EWR DCA 0 3 0
## 444 900 MQ LGA DCA 0 4 0
## 445 900 US LGA DCA 0 4 0
## 446 900 RU EWR DCA 0 4 0
## 447 900 MQ LGA DCA 0 5 0
## 448 900 RU EWR DCA 0 5 0
## 449 900 MQ LGA DCA 0 6 0
## 450 900 US LGA DCA 0 6 0
## 451 900 US LGA DCA 0 7 0
## 452 900 MQ LGA DCA 0 1 0
## 453 900 US LGA DCA 0 1 0
## 454 900 RU EWR DCA 0 1 0
## 455 900 MQ LGA DCA 0 2 0
## 456 900 US LGA DCA 0 2 0
## 457 900 RU EWR DCA 0 2 0
## 458 900 MQ LGA DCA 0 3 0
## 459 900 US LGA DCA 0 3 0
## 460 900 RU EWR DCA 0 3 0
## 461 900 US LGA DCA 0 4 1
## 462 900 RU EWR DCA 0 4 1
## 463 900 MQ LGA DCA 0 5 1
## 464 900 US LGA DCA 0 5 1
## 465 900 RU EWR DCA 0 5 0
## 466 900 MQ LGA DCA 0 6 0
## 467 900 US LGA DCA 0 6 0
## 468 900 US LGA DCA 0 7 0
## 469 900 MQ LGA DCA 0 1 0
## 470 900 US LGA DCA 0 1 0
## 471 900 RU EWR DCA 0 1 0
## 472 900 MQ LGA DCA 0 2 0
## 473 900 US LGA DCA 0 2 0
## 474 900 RU EWR DCA 0 2 0
## 475 900 MQ LGA DCA 0 3 0
## 476 900 US LGA DCA 0 3 0
## 477 900 RU EWR DCA 0 3 0
## 478 900 MQ LGA DCA 0 4 0
## 479 900 US LGA DCA 0 4 0
## 480 900 RU EWR DCA 0 4 0
## 481 900 MQ LGA DCA 0 5 0
## 482 900 US LGA DCA 0 5 0
## 483 900 RU EWR DCA 0 5 0
## 484 900 MQ LGA DCA 0 6 1
## 485 900 US LGA DCA 0 6 0
## 486 900 US LGA DCA 0 7 0
## 487 900 MQ LGA DCA 1 1 1
## 488 900 US LGA DCA 1 1 1
## 489 900 RU EWR DCA 0 1 0
## 490 900 US LGA DCA 0 2 0
## 491 900 US LGA DCA 0 3 1
## 492 900 RU EWR DCA 0 3 1
## 493 900 MQ LGA DCA 0 4 0
## 494 900 US LGA DCA 0 4 0
## 495 900 RU EWR DCA 0 4 0
## 496 900 MQ LGA DCA 0 5 0
## 497 900 US LGA DCA 0 5 0
## 498 900 RU EWR DCA 0 5 0
## 499 900 MQ LGA DCA 0 6 0
## 500 900 US LGA DCA 0 6 0
## 501 925 MQ JFK DCA 0 7 0
## 502 925 MQ JFK DCA 0 7 0
## 503 925 MQ JFK DCA 0 7 0
## 504 930 DL LGA DCA 0 4 0
## 505 930 DL LGA DCA 0 5 0
## 506 930 RU EWR DCA 0 6 0
## 507 930 RU EWR DCA 0 7 0
## 508 930 DL LGA DCA 0 1 0
## 509 930 DL LGA DCA 0 2 0
## 510 930 DL LGA DCA 0 3 0
## 511 930 DL LGA DCA 0 4 0
## 512 930 DL LGA DCA 0 5 0
## 513 930 RU EWR DCA 0 6 0
## 514 930 RU EWR DCA 0 7 0
## 515 930 DL LGA DCA 0 1 1
## 516 930 DL LGA DCA 0 2 0
## 517 930 DL LGA DCA 0 3 0
## 518 930 DL LGA DCA 0 4 0
## 519 930 DL LGA DCA 0 5 0
## 520 930 RU EWR DCA 0 6 0
## 521 930 RU EWR DCA 0 7 0
## 522 930 DL LGA DCA 0 2 0
## 523 930 DL LGA DCA 0 3 0
## 524 930 DL LGA DCA 0 4 0
## 525 930 DL LGA DCA 0 5 0
## 526 930 RU EWR DCA 0 6 0
## 527 930 RU EWR DCA 0 7 0
## 528 930 DL LGA DCA 0 1 0
## 529 930 DL LGA DCA 0 3 0
## 530 930 DL LGA DCA 0 5 0
## 531 930 RU EWR DCA 0 6 0
## 532 1000 US LGA DCA 0 7 0
## 533 1000 US LGA DCA 0 1 0
## 534 1000 US LGA DCA 0 2 0
## 535 1000 US LGA DCA 0 3 0
## 536 1000 US LGA DCA 0 4 0
## 537 1000 US LGA DCA 0 5 0
## 538 1000 US LGA DCA 0 7 0
## 539 1000 US LGA DCA 0 1 0
## 540 1000 US LGA DCA 0 2 0
## 541 1000 US LGA DCA 0 3 0
## 542 1000 US LGA DCA 0 5 0
## 543 1000 US LGA DCA 0 7 0
## 544 1000 US LGA DCA 0 1 0
## 545 1000 US LGA DCA 0 2 0
## 546 1000 US LGA DCA 0 3 0
## 547 1000 US LGA DCA 0 4 0
## 548 1000 US LGA DCA 0 5 0
## 549 1000 US LGA DCA 0 7 0
## 550 1000 US LGA DCA 0 1 0
## 551 1000 US LGA DCA 0 2 0
## 552 1000 US LGA DCA 0 3 0
## 553 1000 US LGA DCA 0 4 0
## 554 1000 US LGA DCA 0 5 0
## 555 1030 RU EWR BWI 0 4 0
## 556 1030 RU EWR BWI 0 5 0
## 557 1030 DL LGA DCA 0 6 0
## 558 1030 RU EWR BWI 0 6 0
## 559 1030 DL LGA DCA 0 7 0
## 560 1030 RU EWR BWI 0 7 1
## 561 1030 DL LGA DCA 0 1 0
## 562 1030 RU EWR BWI 0 1 1
## 563 1030 DL LGA DCA 0 2 0
## 564 1030 RU EWR BWI 0 2 0
## 565 1030 DL LGA DCA 0 3 0
## 566 1030 RU EWR BWI 0 3 1
## 567 1030 DL LGA DCA 0 4 0
## 568 1030 RU EWR BWI 0 4 0
## 569 1030 DL LGA DCA 0 5 0
## 570 1030 RU EWR BWI 0 5 1
## 571 1030 DL LGA DCA 0 6 0
## 572 1030 RU EWR BWI 0 6 0
## 573 1030 DL LGA DCA 0 7 0
## 574 1030 RU EWR BWI 0 7 0
## 575 1030 DL LGA DCA 0 1 0
## 576 1030 RU EWR BWI 0 1 0
## 577 1030 DL LGA DCA 0 2 0
## 578 1030 RU EWR BWI 0 2 0
## 579 1030 DL LGA DCA 0 3 0
## 580 1030 RU EWR BWI 0 3 0
## 581 1030 RU EWR BWI 0 4 1
## 582 1030 DL LGA DCA 0 5 1
## 583 1030 RU EWR BWI 0 5 1
## 584 1030 DL LGA DCA 0 6 0
## 585 1030 RU EWR BWI 0 6 0
## 586 1030 DL LGA DCA 0 7 0
## 587 1030 RU EWR BWI 1 7 1
## 588 1030 DL LGA DCA 0 1 0
## 589 1030 RU EWR BWI 0 1 0
## 590 1030 DL LGA DCA 0 2 0
## 591 1030 RU EWR BWI 0 2 0
## 592 1030 DL LGA DCA 0 3 0
## 593 1030 RU EWR BWI 0 3 0
## 594 1030 DL LGA DCA 0 4 0
## 595 1030 RU EWR BWI 0 4 0
## 596 1030 DL LGA DCA 0 5 0
## 597 1030 RU EWR BWI 0 5 0
## 598 1030 DL LGA DCA 0 6 0
## 599 1030 RU EWR BWI 0 6 0
## 600 1030 DL LGA DCA 0 7 0
## 601 1030 RU EWR BWI 0 7 1
## 602 1030 DL LGA DCA 0 1 0
## 603 1030 DL LGA DCA 0 2 0
## 604 1030 RU EWR BWI 0 3 0
## 605 1030 DL LGA DCA 0 4 0
## 606 1030 RU EWR BWI 0 4 0
## 607 1030 DL LGA DCA 0 5 0
## 608 1030 RU EWR BWI 0 5 0
## 609 1030 DL LGA DCA 0 6 0
## 610 1030 RU EWR BWI 0 6 0
## 611 1039 DH LGA IAD 0 4 0
## 612 1039 DH LGA IAD 0 5 1
## 613 1039 DH LGA IAD 0 6 0
## 614 1039 DH LGA IAD 0 7 0
## 615 1039 DH LGA IAD 0 1 0
## 616 1039 DH LGA IAD 0 2 0
## 617 1040 DH LGA IAD 0 3 0
## 618 1040 DH LGA IAD 0 4 0
## 619 1040 DH LGA IAD 0 5 0
## 620 1040 DH LGA IAD 0 1 0
## 621 1040 DH LGA IAD 0 2 0
## 622 1040 DH LGA IAD 0 3 0
## 623 1040 DH LGA IAD 0 1 0
## 624 1040 DH LGA IAD 0 2 0
## 625 1040 DH LGA IAD 0 3 0
## 626 1040 DH LGA IAD 0 4 0
## 627 1040 DH LGA IAD 0 5 0
## 628 1040 DH LGA IAD 0 1 1
## 629 1040 DH LGA IAD 0 2 0
## 630 1040 DH LGA IAD 0 3 0
## 631 1040 DH LGA IAD 0 5 0
## 632 1100 US LGA DCA 0 4 0
## 633 1100 MQ LGA DCA 0 5 0
## 634 1100 US LGA DCA 0 5 0
## 635 1100 US LGA DCA 0 6 0
## 636 1100 US LGA DCA 0 7 0
## 637 1100 MQ LGA DCA 0 1 0
## 638 1100 US LGA DCA 0 1 0
## 639 1100 MQ LGA DCA 0 2 0
## 640 1100 US LGA DCA 0 2 0
## 641 1100 MQ LGA DCA 0 3 0
## 642 1100 US LGA DCA 0 3 0
## 643 1100 MQ LGA DCA 0 4 0
## 644 1100 US LGA DCA 0 4 0
## 645 1100 MQ LGA DCA 0 5 1
## 646 1100 US LGA DCA 0 5 0
## 647 1100 US LGA DCA 0 6 0
## 648 1100 US LGA DCA 0 7 0
## 649 1100 MQ LGA DCA 0 1 0
## 650 1100 US LGA DCA 0 1 1
## 651 1100 MQ LGA DCA 0 2 0
## 652 1100 US LGA DCA 0 2 0
## 653 1100 MQ LGA DCA 0 3 1
## 654 1100 US LGA DCA 0 3 0
## 655 1100 MQ LGA DCA 0 4 0
## 656 1100 US LGA DCA 0 4 0
## 657 1100 MQ LGA DCA 0 5 1
## 658 1100 US LGA DCA 0 5 0
## 659 1100 US LGA DCA 0 6 0
## 660 1100 US LGA DCA 0 7 0
## 661 1100 MQ LGA DCA 0 1 0
## 662 1100 US LGA DCA 0 1 0
## 663 1100 MQ LGA DCA 0 2 0
## 664 1100 US LGA DCA 0 2 0
## 665 1100 MQ LGA DCA 0 3 0
## 666 1100 US LGA DCA 0 3 0
## 667 1100 MQ LGA DCA 0 4 0
## 668 1100 US LGA DCA 0 4 0
## 669 1100 MQ LGA DCA 0 5 0
## 670 1100 US LGA DCA 0 5 0
## 671 1100 US LGA DCA 0 6 0
## 672 1100 US LGA DCA 0 7 0
## 673 1100 US LGA DCA 0 1 1
## 674 1100 US LGA DCA 0 2 0
## 675 1100 US LGA DCA 0 3 0
## 676 1100 US LGA DCA 0 4 0
## 677 1100 MQ LGA DCA 0 5 0
## 678 1100 US LGA DCA 0 5 0
## 679 1100 US LGA DCA 0 6 0
## 680 1130 DL LGA DCA 0 1 0
## 681 1130 DL LGA DCA 0 2 0
## 682 1130 DL LGA DCA 0 3 0
## 683 1130 DL LGA DCA 0 4 0
## 684 1130 DL LGA DCA 0 5 0
## 685 1130 DL LGA DCA 0 7 0
## 686 1130 DL LGA DCA 0 1 0
## 687 1130 DL LGA DCA 0 2 0
## 688 1130 DL LGA DCA 0 3 1
## 689 1130 DL LGA DCA 0 4 0
## 690 1130 DL LGA DCA 0 5 0
## 691 1130 DL LGA DCA 0 2 0
## 692 1130 DL LGA DCA 0 3 0
## 693 1130 DL LGA DCA 0 4 0
## 694 1130 DL LGA DCA 0 5 0
## 695 1130 DL LGA DCA 0 7 0
## 696 1130 DL LGA DCA 0 1 0
## 697 1130 DL LGA DCA 0 3 0
## 698 1130 DL LGA DCA 0 4 0
## 699 1130 DL LGA DCA 0 5 0
## 700 1200 US LGA DCA 0 7 0
## 701 1200 US LGA DCA 0 1 0
## 702 1200 US LGA DCA 0 2 0
## 703 1200 US LGA DCA 0 3 0
## 704 1200 US LGA DCA 0 4 0
## 705 1200 US LGA DCA 0 5 0
## 706 1200 US LGA DCA 0 7 0
## 707 1200 US LGA DCA 0 1 0
## 708 1200 US LGA DCA 0 2 0
## 709 1200 US LGA DCA 0 3 0
## 710 1200 US LGA DCA 0 4 0
## 711 1200 US LGA DCA 0 5 0
## 712 1200 US LGA DCA 0 7 0
## 713 1200 US LGA DCA 0 1 0
## 714 1200 US LGA DCA 0 2 0
## 715 1200 US LGA DCA 0 3 0
## 716 1200 US LGA DCA 0 4 0
## 717 1200 US LGA DCA 0 5 0
## 718 1200 US LGA DCA 0 7 0
## 719 1200 US LGA DCA 0 2 0
## 720 1200 US LGA DCA 0 4 0
## 721 1200 US LGA DCA 0 5 0
## 722 1230 DL LGA DCA 0 4 0
## 723 1230 DL LGA DCA 0 5 0
## 724 1230 DL LGA DCA 0 6 0
## 725 1230 DL LGA DCA 0 7 0
## 726 1230 DL LGA DCA 0 1 0
## 727 1230 DL LGA DCA 0 2 0
## 728 1230 DL LGA DCA 0 3 0
## 729 1230 DL LGA DCA 0 4 0
## 730 1230 DL LGA DCA 0 5 0
## 731 1230 DL LGA DCA 0 6 0
## 732 1230 DL LGA DCA 0 7 0
## 733 1230 DL LGA DCA 0 1 0
## 734 1230 DL LGA DCA 0 2 0
## 735 1230 DL LGA DCA 0 3 0
## 736 1230 DL LGA DCA 0 5 0
## 737 1230 DL LGA DCA 0 7 1
## 738 1230 DL LGA DCA 0 1 0
## 739 1230 DL LGA DCA 0 2 0
## 740 1230 DL LGA DCA 0 3 0
## 741 1230 DL LGA DCA 0 4 0
## 742 1230 DL LGA DCA 0 5 0
## 743 1230 DL LGA DCA 0 6 0
## 744 1230 DL LGA DCA 0 7 0
## 745 1230 DL LGA DCA 0 1 0
## 746 1230 DL LGA DCA 0 2 0
## 747 1230 DL LGA DCA 0 4 0
## 748 1230 DL LGA DCA 0 5 0
## 749 1230 DL LGA DCA 0 6 0
## 750 1240 DH JFK IAD 0 4 0
## 751 1240 DH JFK IAD 0 5 0
## 752 1240 DH JFK IAD 0 6 0
## 753 1240 DH JFK IAD 0 7 0
## 754 1240 DH JFK IAD 0 1 1
## 755 1240 DH JFK IAD 0 2 0
## 756 1240 DH JFK IAD 0 3 0
## 757 1240 DH JFK IAD 0 4 0
## 758 1240 DH JFK IAD 0 5 0
## 759 1240 DH JFK IAD 0 6 1
## 760 1240 DH JFK IAD 0 7 0
## 761 1240 DH JFK IAD 0 1 0
## 762 1240 DH JFK IAD 0 2 0
## 763 1240 DH JFK IAD 0 3 0
## 764 1240 DH JFK IAD 0 4 0
## 765 1240 DH JFK IAD 0 5 0
## 766 1240 DH JFK IAD 0 6 0
## 767 1240 DH JFK IAD 0 7 0
## 768 1240 DH JFK IAD 0 1 0
## 769 1240 DH JFK IAD 0 2 1
## 770 1240 DH JFK IAD 0 3 0
## 771 1240 DH JFK IAD 0 4 0
## 772 1240 DH JFK IAD 0 5 0
## 773 1240 DH JFK IAD 0 6 0
## 774 1240 DH JFK IAD 0 7 1
## 775 1240 DH JFK IAD 0 1 0
## 776 1240 DH JFK IAD 0 2 1
## 777 1240 DH JFK IAD 0 3 1
## 778 1240 DH JFK IAD 0 4 0
## 779 1240 DH JFK IAD 0 5 0
## 780 1240 DH JFK IAD 0 6 0
## 781 1245 DH LGA IAD 0 4 0
## 782 1245 DH EWR IAD 0 4 0
## 783 1245 DH LGA IAD 0 5 0
## 784 1245 DH EWR IAD 0 5 1
## 785 1245 DH LGA IAD 0 6 0
## 786 1245 DH EWR IAD 0 6 1
## 787 1245 DH LGA IAD 0 7 0
## 788 1245 DH EWR IAD 0 7 1
## 789 1245 DH LGA IAD 0 1 1
## 790 1245 DH EWR IAD 0 1 1
## 791 1245 DH LGA IAD 0 2 0
## 792 1245 DH EWR IAD 0 2 0
## 793 1245 DH LGA IAD 0 3 0
## 794 1245 DH EWR IAD 0 3 1
## 795 1245 DH LGA IAD 0 4 0
## 796 1245 DH EWR IAD 0 4 0
## 797 1245 DH LGA IAD 0 5 0
## 798 1245 DH EWR IAD 0 5 0
## 799 1245 DH LGA IAD 0 6 0
## 800 1245 DH EWR IAD 0 6 0
## 801 1245 DH LGA IAD 0 7 0
## 802 1245 DH EWR IAD 0 7 0
## 803 1245 DH LGA IAD 0 1 0
## 804 1245 DH EWR IAD 0 1 1
## 805 1245 DH LGA IAD 0 2 0
## 806 1245 DH EWR IAD 0 2 0
## 807 1245 DH LGA IAD 0 3 0
## 808 1245 DH EWR IAD 0 3 0
## 809 1245 DH LGA IAD 0 4 0
## 810 1245 DH EWR IAD 0 4 0
## 811 1245 DH EWR IAD 0 5 0
## 812 1245 DH LGA IAD 0 6 0
## 813 1245 DH EWR IAD 0 6 0
## 814 1245 DH LGA IAD 0 7 0
## 815 1245 DH EWR IAD 0 7 1
## 816 1245 DH LGA IAD 0 1 0
## 817 1245 DH EWR IAD 0 1 0
## 818 1245 DH LGA IAD 0 2 0
## 819 1245 DH EWR IAD 0 2 0
## 820 1245 DH LGA IAD 0 3 0
## 821 1245 DH EWR IAD 0 3 0
## 822 1245 DH LGA IAD 0 4 1
## 823 1245 DH EWR IAD 0 4 0
## 824 1245 DH LGA IAD 0 5 1
## 825 1245 DH EWR IAD 0 5 0
## 826 1245 DH LGA IAD 0 6 0
## 827 1245 DH EWR IAD 0 6 0
## 828 1245 DH LGA IAD 0 7 0
## 829 1245 DH EWR IAD 0 7 0
## 830 1245 DH LGA IAD 0 1 0
## 831 1245 DH EWR IAD 0 1 1
## 832 1245 DH LGA IAD 1 2 1
## 833 1245 DH EWR IAD 0 2 1
## 834 1245 DH LGA IAD 0 3 0
## 835 1245 DH EWR IAD 0 3 1
## 836 1245 DH LGA IAD 0 4 1
## 837 1245 DH EWR IAD 0 4 0
## 838 1245 DH LGA IAD 0 5 0
## 839 1245 DH EWR IAD 0 5 1
## 840 1245 DH LGA IAD 0 6 0
## 841 1245 DH EWR IAD 0 6 0
## 842 1300 MQ LGA DCA 0 4 0
## 843 1300 US LGA DCA 0 4 0
## 844 1300 CO EWR DCA 0 4 0
## 845 1300 RU EWR IAD 0 4 0
## 846 1300 MQ LGA DCA 0 5 0
## 847 1300 US LGA DCA 0 5 0
## 848 1300 CO EWR DCA 0 5 0
## 849 1300 RU EWR IAD 0 5 0
## 850 1300 MQ LGA DCA 0 6 0
## 851 1300 US LGA DCA 0 6 0
## 852 1300 CO EWR DCA 0 6 0
## 853 1300 MQ LGA DCA 0 7 0
## 854 1300 US LGA DCA 0 7 0
## 855 1300 CO EWR DCA 0 7 0
## 856 1300 MQ LGA DCA 0 1 0
## 857 1300 US LGA DCA 0 1 0
## 858 1300 CO EWR DCA 0 1 1
## 859 1300 RU EWR IAD 0 1 1
## 860 1300 MQ LGA DCA 0 2 0
## 861 1300 US LGA DCA 0 2 0
## 862 1300 CO EWR DCA 0 2 0
## 863 1300 RU EWR IAD 0 2 0
## 864 1300 MQ LGA DCA 0 3 0
## 865 1300 US LGA DCA 0 3 0
## 866 1300 CO EWR DCA 0 3 0
## 867 1300 RU EWR IAD 0 3 0
## 868 1300 MQ LGA DCA 0 4 0
## 869 1300 US LGA DCA 0 4 0
## 870 1300 CO EWR DCA 0 4 0
## 871 1300 RU EWR IAD 0 4 0
## 872 1300 MQ LGA DCA 0 5 0
## 873 1300 US LGA DCA 0 5 0
## 874 1300 CO EWR DCA 0 5 0
## 875 1300 RU EWR IAD 0 5 0
## 876 1300 MQ LGA DCA 0 6 0
## 877 1300 US LGA DCA 0 6 0
## 878 1300 CO EWR DCA 0 6 0
## 879 1300 MQ LGA DCA 0 7 1
## 880 1300 US LGA DCA 0 7 0
## 881 1300 CO EWR DCA 0 7 0
## 882 1300 MQ LGA DCA 0 1 0
## 883 1300 US LGA DCA 0 1 0
## 884 1300 CO EWR DCA 0 1 0
## 885 1300 RU EWR IAD 0 1 0
## 886 1300 MQ LGA DCA 0 2 0
## 887 1300 US LGA DCA 0 2 0
## 888 1300 CO EWR DCA 0 2 0
## 889 1300 RU EWR IAD 0 2 0
## 890 1300 MQ LGA DCA 0 3 0
## 891 1300 US LGA DCA 0 3 0
## 892 1300 CO EWR DCA 0 3 0
## 893 1300 RU EWR IAD 0 3 0
## 894 1300 MQ LGA DCA 0 4 1
## 895 1300 CO EWR DCA 0 4 0
## 896 1300 RU EWR IAD 0 4 1
## 897 1300 MQ LGA DCA 0 5 1
## 898 1300 US LGA DCA 0 5 0
## 899 1300 CO EWR DCA 0 5 1
## 900 1300 RU EWR IAD 0 5 1
## 901 1300 MQ LGA DCA 0 6 0
## 902 1300 US LGA DCA 0 6 0
## 903 1300 CO EWR DCA 0 6 0
## 904 1300 MQ LGA DCA 0 7 1
## 905 1300 US LGA DCA 0 7 1
## 906 1300 CO EWR DCA 0 7 0
## 907 1300 MQ LGA DCA 0 1 0
## 908 1300 US LGA DCA 0 1 0
## 909 1300 CO EWR DCA 0 1 0
## 910 1300 RU EWR IAD 0 1 0
## 911 1300 MQ LGA DCA 0 2 0
## 912 1300 US LGA DCA 0 2 0
## 913 1300 CO EWR DCA 0 2 0
## 914 1300 RU EWR IAD 0 2 0
## 915 1300 MQ LGA DCA 0 3 0
## 916 1300 US LGA DCA 0 3 0
## 917 1300 CO EWR DCA 0 3 0
## 918 1300 RU EWR IAD 0 3 0
## 919 1300 MQ LGA DCA 0 4 0
## 920 1300 US LGA DCA 0 4 0
## 921 1300 CO EWR DCA 0 4 0
## 922 1300 RU EWR IAD 0 4 0
## 923 1300 MQ LGA DCA 0 5 1
## 924 1300 US LGA DCA 0 5 1
## 925 1300 CO EWR DCA 0 5 0
## 926 1300 RU EWR IAD 0 5 0
## 927 1300 MQ LGA DCA 0 6 0
## 928 1300 US LGA DCA 0 6 0
## 929 1300 CO EWR DCA 0 6 0
## 930 1300 MQ LGA DCA 0 7 0
## 931 1300 US LGA DCA 0 7 0
## 932 1300 CO EWR DCA 0 7 0
## 933 1300 MQ LGA DCA 1 1 1
## 934 1300 CO EWR DCA 0 1 0
## 935 1300 RU EWR IAD 0 1 0
## 936 1300 US LGA DCA 0 2 0
## 937 1300 CO EWR DCA 0 2 1
## 938 1300 US LGA DCA 0 3 0
## 939 1300 CO EWR DCA 0 3 0
## 940 1300 MQ LGA DCA 0 4 0
## 941 1300 US LGA DCA 0 4 0
## 942 1300 CO EWR DCA 0 4 0
## 943 1300 RU EWR IAD 0 4 0
## 944 1300 MQ LGA DCA 0 5 0
## 945 1300 US LGA DCA 0 5 0
## 946 1300 CO EWR DCA 0 5 0
## 947 1300 RU EWR IAD 0 5 0
## 948 1300 MQ LGA DCA 0 6 0
## 949 1300 US LGA DCA 0 6 0
## 950 1300 CO EWR DCA 0 6 0
## 951 1315 RU EWR BWI 0 7 1
## 952 1315 RU EWR BWI 0 7 0
## 953 1315 RU EWR BWI 0 7 1
## 954 1315 RU EWR BWI 0 7 0
## 955 1330 DL LGA DCA 0 1 0
## 956 1330 DL LGA DCA 0 2 0
## 957 1330 DL LGA DCA 0 3 0
## 958 1330 DL LGA DCA 0 4 0
## 959 1330 DL LGA DCA 0 5 0
## 960 1330 DL LGA DCA 0 7 0
## 961 1330 DL LGA DCA 0 1 0
## 962 1330 DL LGA DCA 0 2 0
## 963 1330 DL LGA DCA 0 3 0
## 964 1330 DL LGA DCA 0 4 0
## 965 1330 DL LGA DCA 0 5 0
## 966 1330 DL LGA DCA 0 2 0
## 967 1330 DL LGA DCA 0 3 0
## 968 1330 DL LGA DCA 0 4 0
## 969 1330 DL LGA DCA 0 7 0
## 970 1330 DL LGA DCA 0 1 0
## 971 1330 DL LGA DCA 0 3 0
## 972 1330 DL LGA DCA 0 4 0
## 973 1330 DL LGA DCA 0 5 0
## 974 1359 RU EWR DCA 0 2 0
## 975 1359 RU EWR DCA 0 3 0
## 976 1359 RU EWR DCA 0 4 0
## 977 1359 RU EWR DCA 0 5 0
## 978 1359 RU EWR DCA 0 6 0
## 979 1359 RU EWR DCA 0 7 0
## 980 1359 RU EWR DCA 0 1 0
## 981 1359 RU EWR DCA 0 2 0
## 982 1359 RU EWR DCA 0 3 0
## 983 1359 RU EWR DCA 0 4 0
## 984 1359 RU EWR DCA 0 5 1
## 985 1359 RU EWR DCA 0 6 0
## 986 1359 RU EWR DCA 0 7 1
## 987 1359 RU EWR DCA 0 1 0
## 988 1359 RU EWR DCA 0 2 0
## 989 1359 RU EWR DCA 0 3 0
## 990 1359 RU EWR DCA 0 4 0
## 991 1359 RU EWR DCA 0 5 0
## 992 1359 RU EWR DCA 0 6 0
## 993 1359 RU EWR DCA 0 7 0
## 994 1359 RU EWR DCA 0 1 0
## 995 1359 RU EWR DCA 0 3 0
## 996 1359 RU EWR DCA 0 4 1
## 997 1359 RU EWR DCA 0 5 1
## 998 1359 RU EWR DCA 0 6 0
## 999 1400 MQ LGA DCA 0 4 0
## 1000 1400 RU EWR DCA 0 4 0
## 1001 1400 MQ LGA DCA 0 5 0
## 1002 1400 RU EWR DCA 0 5 0
## 1003 1400 RU EWR DCA 0 6 0
## 1004 1400 US LGA DCA 0 7 0
## 1005 1400 RU EWR DCA 0 7 1
## 1006 1400 US LGA DCA 0 1 0
## 1007 1400 RU EWR DCA 0 1 1
## 1008 1400 MQ LGA DCA 0 2 0
## 1009 1400 US LGA DCA 0 2 0
## 1010 1400 MQ LGA DCA 0 3 0
## 1011 1400 US LGA DCA 0 3 0
## 1012 1400 MQ LGA DCA 0 4 0
## 1013 1400 US LGA DCA 0 4 0
## 1014 1400 MQ LGA DCA 0 5 0
## 1015 1400 US LGA DCA 0 5 0
## 1016 1400 US LGA DCA 0 7 0
## 1017 1400 US LGA DCA 0 1 0
## 1018 1400 MQ LGA DCA 0 2 0
## 1019 1400 US LGA DCA 0 2 0
## 1020 1400 US LGA DCA 0 3 0
## 1021 1400 MQ LGA DCA 0 4 0
## 1022 1400 US LGA DCA 0 4 0
## 1023 1400 MQ LGA DCA 0 5 1
## 1024 1400 US LGA DCA 0 5 0
## 1025 1400 US LGA DCA 0 7 0
## 1026 1400 MQ LGA DCA 0 1 0
## 1027 1400 US LGA DCA 0 1 0
## 1028 1400 MQ LGA DCA 0 2 0
## 1029 1400 US LGA DCA 0 2 0
## 1030 1400 MQ LGA DCA 0 3 0
## 1031 1400 US LGA DCA 0 3 0
## 1032 1400 MQ LGA DCA 0 4 0
## 1033 1400 US LGA DCA 0 4 0
## 1034 1400 MQ LGA DCA 0 5 0
## 1035 1400 US LGA DCA 0 5 0
## 1036 1400 US LGA DCA 0 7 0
## 1037 1400 US LGA DCA 0 1 0
## 1038 1400 MQ LGA DCA 1 2 1
## 1039 1400 US LGA DCA 0 2 0
## 1040 1400 MQ LGA DCA 0 3 1
## 1041 1400 MQ LGA DCA 0 4 1
## 1042 1400 US LGA DCA 0 4 0
## 1043 1400 MQ LGA DCA 0 5 0
## 1044 1400 US LGA DCA 0 5 0
## 1045 1430 DL LGA DCA 0 4 0
## 1046 1430 DL LGA DCA 0 5 0
## 1047 1430 DH EWR IAD 0 5 1
## 1048 1430 DL LGA DCA 0 6 0
## 1049 1430 DL LGA DCA 0 7 0
## 1050 1430 DH EWR IAD 0 7 1
## 1051 1430 DL LGA DCA 0 1 0
## 1052 1430 DH EWR IAD 0 1 1
## 1053 1430 DL LGA DCA 0 2 0
## 1054 1430 DH EWR IAD 0 2 0
## 1055 1430 DL LGA DCA 0 3 0
## 1056 1430 DH EWR IAD 0 3 0
## 1057 1430 DL LGA DCA 0 4 0
## 1058 1430 DH EWR IAD 0 4 0
## 1059 1430 DL LGA DCA 0 5 0
## 1060 1430 DH EWR IAD 0 5 0
## 1061 1430 DL LGA DCA 0 6 0
## 1062 1430 DL LGA DCA 0 7 0
## 1063 1430 DH EWR IAD 0 7 1
## 1064 1430 DL LGA DCA 0 1 0
## 1065 1430 DH EWR IAD 0 1 0
## 1066 1430 DL LGA DCA 0 2 0
## 1067 1430 DH EWR IAD 0 2 1
## 1068 1430 DL LGA DCA 0 3 0
## 1069 1430 DH EWR IAD 0 3 1
## 1070 1430 DL LGA DCA 0 4 0
## 1071 1430 DL LGA DCA 0 5 0
## 1072 1430 DL LGA DCA 0 6 0
## 1073 1430 DL LGA DCA 0 7 0
## 1074 1430 DL LGA DCA 0 1 0
## 1075 1430 DH EWR IAD 0 1 0
## 1076 1430 DL LGA DCA 0 2 0
## 1077 1430 DH EWR IAD 0 2 0
## 1078 1430 DL LGA DCA 0 3 0
## 1079 1430 DH EWR IAD 0 3 0
## 1080 1430 DL LGA DCA 0 4 1
## 1081 1430 DH EWR IAD 0 4 0
## 1082 1430 DL LGA DCA 0 5 0
## 1083 1430 DH EWR IAD 0 5 0
## 1084 1430 DL LGA DCA 0 6 0
## 1085 1430 DL LGA DCA 0 7 0
## 1086 1430 DH EWR IAD 0 7 1
## 1087 1430 DL LGA DCA 0 1 1
## 1088 1430 DH EWR IAD 1 1 1
## 1089 1430 DL LGA DCA 0 2 0
## 1090 1430 DH EWR IAD 1 2 1
## 1091 1430 DH EWR IAD 0 3 0
## 1092 1430 DL LGA DCA 0 4 0
## 1093 1430 DH EWR IAD 0 4 0
## 1094 1430 DL LGA DCA 0 5 0
## 1095 1430 DH EWR IAD 0 5 0
## 1096 1430 DL LGA DCA 0 6 0
## 1097 1455 OH JFK BWI 0 4 0
## 1098 1455 DL JFK DCA 0 4 0
## 1099 1455 RU EWR BWI 0 4 0
## 1100 1455 OH JFK BWI 0 5 0
## 1101 1455 DH LGA IAD 0 5 1
## 1102 1455 DH JFK IAD 0 5 0
## 1103 1455 DL JFK DCA 0 5 0
## 1104 1455 RU EWR BWI 0 5 0
## 1105 1455 DH JFK IAD 0 6 0
## 1106 1455 DL JFK DCA 0 6 1
## 1107 1455 RU EWR BWI 0 6 0
## 1108 1455 OH JFK BWI 0 7 1
## 1109 1455 DH LGA IAD 0 7 1
## 1110 1455 DH JFK IAD 0 7 0
## 1111 1455 DL JFK DCA 0 7 0
## 1112 1455 RU EWR BWI 0 7 1
## 1113 1455 OH JFK BWI 0 1 1
## 1114 1455 DH LGA IAD 0 1 1
## 1115 1455 DL JFK DCA 0 1 0
## 1116 1455 RU EWR BWI 0 1 1
## 1117 1455 OH JFK BWI 0 2 0
## 1118 1455 DH LGA IAD 0 2 0
## 1119 1455 DH JFK IAD 0 2 0
## 1120 1455 DL JFK DCA 0 2 0
## 1121 1455 RU EWR BWI 0 2 0
## 1122 1455 OH JFK BWI 0 3 0
## 1123 1455 DH LGA IAD 0 3 0
## 1124 1455 DH JFK IAD 0 3 0
## 1125 1455 DL JFK DCA 0 3 0
## 1126 1455 RU EWR BWI 0 3 0
## 1127 1455 OH JFK BWI 0 4 0
## 1128 1455 DH LGA IAD 0 4 1
## 1129 1455 DH JFK IAD 0 4 0
## 1130 1455 DL JFK DCA 0 4 1
## 1131 1455 RU EWR BWI 0 4 0
## 1132 1455 OH JFK BWI 0 5 0
## 1133 1455 DH LGA IAD 0 5 1
## 1134 1455 DH JFK IAD 0 5 0
## 1135 1455 DL JFK DCA 0 5 0
## 1136 1455 RU EWR BWI 0 5 0
## 1137 1455 OH JFK BWI 0 6 0
## 1138 1455 DL JFK DCA 0 6 1
## 1139 1455 RU EWR BWI 0 6 0
## 1140 1455 OH JFK BWI 0 7 0
## 1141 1455 DH LGA IAD 0 7 0
## 1142 1455 DH JFK IAD 0 7 1
## 1143 1455 DL JFK DCA 0 7 1
## 1144 1455 RU EWR BWI 0 7 0
## 1145 1455 OH JFK BWI 0 1 0
## 1146 1455 DH LGA IAD 0 1 0
## 1147 1455 DH JFK IAD 0 1 1
## 1148 1455 DL JFK DCA 0 1 0
## 1149 1455 RU EWR BWI 0 1 1
## 1150 1455 OH JFK BWI 0 2 0
## 1151 1455 DH JFK IAD 0 2 0
## 1152 1455 DL JFK DCA 0 2 0
## 1153 1455 RU EWR BWI 0 2 1
## 1154 1455 OH JFK BWI 0 3 0
## 1155 1455 DH JFK IAD 0 3 0
## 1156 1455 DL JFK DCA 0 3 0
## 1157 1455 RU EWR BWI 0 3 0
## 1158 1455 OH JFK BWI 0 4 0
## 1159 1455 DH LGA IAD 0 4 1
## 1160 1455 DH JFK IAD 0 4 0
## 1161 1455 DL JFK DCA 0 4 0
## 1162 1455 RU EWR BWI 0 4 0
## 1163 1455 OH JFK BWI 0 5 0
## 1164 1455 DH LGA IAD 0 5 1
## 1165 1455 DH JFK IAD 0 5 0
## 1166 1455 DL JFK DCA 0 5 1
## 1167 1455 RU EWR BWI 0 5 1
## 1168 1455 OH JFK BWI 0 6 0
## 1169 1455 DL JFK DCA 0 6 1
## 1170 1455 RU EWR BWI 0 6 0
## 1171 1455 OH JFK BWI 0 7 0
## 1172 1455 DH LGA IAD 0 7 1
## 1173 1455 DH JFK IAD 0 7 1
## 1174 1455 DL JFK DCA 0 7 1
## 1175 1455 RU EWR BWI 0 7 1
## 1176 1455 OH JFK BWI 0 1 0
## 1177 1455 DH LGA IAD 0 1 0
## 1178 1455 DH JFK IAD 0 1 0
## 1179 1455 DL JFK DCA 0 1 1
## 1180 1455 RU EWR BWI 0 1 0
## 1181 1455 OH JFK BWI 0 2 0
## 1182 1455 DH LGA IAD 0 2 0
## 1183 1455 DH JFK IAD 0 2 0
## 1184 1455 DL JFK DCA 0 2 1
## 1185 1455 RU EWR BWI 0 2 0
## 1186 1455 OH JFK BWI 0 3 0
## 1187 1455 DH LGA IAD 0 3 0
## 1188 1455 DH JFK IAD 0 3 0
## 1189 1455 DL JFK DCA 0 3 0
## 1190 1455 RU EWR BWI 0 3 0
## 1191 1455 OH JFK BWI 0 4 1
## 1192 1455 DH LGA IAD 0 4 1
## 1193 1455 DH JFK IAD 0 4 0
## 1194 1455 DL JFK DCA 0 4 0
## 1195 1455 RU EWR BWI 0 4 0
## 1196 1455 OH JFK BWI 0 5 1
## 1197 1455 DH JFK IAD 0 5 0
## 1198 1455 DL JFK DCA 0 5 0
## 1199 1455 RU EWR BWI 0 5 1
## 1200 1455 OH JFK BWI 0 6 0
## 1201 1455 DL JFK DCA 0 6 1
## 1202 1455 RU EWR BWI 0 6 0
## 1203 1455 OH JFK BWI 0 7 0
## 1204 1455 DH LGA IAD 0 7 0
## 1205 1455 DH JFK IAD 0 7 0
## 1206 1455 DL JFK DCA 0 7 1
## 1207 1455 RU EWR BWI 0 7 0
## 1208 1455 OH JFK BWI 0 1 0
## 1209 1455 DH LGA IAD 0 1 1
## 1210 1455 DH JFK IAD 0 1 1
## 1211 1455 DL JFK DCA 1 1 1
## 1212 1455 RU EWR BWI 0 1 0
## 1213 1455 OH JFK BWI 0 2 0
## 1214 1455 DH LGA IAD 1 2 1
## 1215 1455 DH JFK IAD 1 2 1
## 1216 1455 DL JFK DCA 0 2 1
## 1217 1455 OH JFK BWI 0 3 0
## 1218 1455 DH LGA IAD 0 3 1
## 1219 1455 DH JFK IAD 0 3 0
## 1220 1455 DL JFK DCA 0 3 0
## 1221 1455 RU EWR BWI 0 3 0
## 1222 1455 OH JFK BWI 0 4 0
## 1223 1455 DH LGA IAD 0 4 1
## 1224 1455 DH JFK IAD 0 4 0
## 1225 1455 DL JFK DCA 0 4 1
## 1226 1455 RU EWR BWI 0 4 0
## 1227 1455 OH JFK BWI 0 5 0
## 1228 1455 DH LGA IAD 0 5 1
## 1229 1455 DH JFK IAD 0 5 0
## 1230 1455 DL JFK DCA 0 5 1
## 1231 1455 RU EWR BWI 0 5 1
## 1232 1455 OH JFK BWI 0 6 0
## 1233 1455 DL JFK DCA 0 6 0
## 1234 1455 RU EWR BWI 0 6 0
## 1235 1500 MQ LGA DCA 0 4 0
## 1236 1500 US LGA DCA 0 4 0
## 1237 1500 MQ LGA DCA 0 5 0
## 1238 1500 US LGA DCA 0 5 0
## 1239 1500 US LGA DCA 0 6 0
## 1240 1500 MQ LGA DCA 0 7 1
## 1241 1500 US LGA DCA 0 7 0
## 1242 1500 US LGA DCA 0 1 0
## 1243 1500 MQ LGA DCA 0 2 1
## 1244 1500 US LGA DCA 0 2 0
## 1245 1500 RU EWR IAD 0 2 0
## 1246 1500 MQ LGA DCA 0 3 1
## 1247 1500 US LGA DCA 0 3 1
## 1248 1500 RU EWR IAD 0 3 1
## 1249 1500 MQ LGA DCA 0 4 0
## 1250 1500 US LGA DCA 0 4 0
## 1251 1500 RU EWR IAD 0 4 0
## 1252 1500 MQ LGA DCA 0 5 0
## 1253 1500 US LGA DCA 0 5 0
## 1254 1500 RU EWR IAD 0 5 0
## 1255 1500 US LGA DCA 0 6 0
## 1256 1500 RU EWR IAD 0 6 0
## 1257 1500 MQ LGA DCA 0 7 0
## 1258 1500 US LGA DCA 0 7 0
## 1259 1500 RU EWR IAD 0 7 0
## 1260 1500 MQ LGA DCA 0 1 0
## 1261 1500 US LGA DCA 0 1 0
## 1262 1500 RU EWR IAD 0 1 0
## 1263 1500 MQ LGA DCA 0 2 0
## 1264 1500 US LGA DCA 0 2 0
## 1265 1500 RU EWR IAD 0 2 0
## 1266 1500 MQ LGA DCA 0 3 0
## 1267 1500 US LGA DCA 0 3 0
## 1268 1500 RU EWR IAD 0 3 0
## 1269 1500 MQ LGA DCA 0 4 0
## 1270 1500 US LGA DCA 0 4 0
## 1271 1500 RU EWR IAD 0 4 0
## 1272 1500 US LGA DCA 0 5 0
## 1273 1500 RU EWR IAD 0 5 1
## 1274 1500 US LGA DCA 0 6 0
## 1275 1500 RU EWR IAD 0 6 0
## 1276 1500 MQ LGA DCA 0 7 1
## 1277 1500 RU EWR IAD 0 7 1
## 1278 1500 MQ LGA DCA 0 1 1
## 1279 1500 US LGA DCA 0 1 0
## 1280 1500 RU EWR IAD 0 1 0
## 1281 1500 MQ LGA DCA 0 2 0
## 1282 1500 US LGA DCA 0 2 0
## 1283 1500 RU EWR IAD 0 2 0
## 1284 1500 MQ LGA DCA 0 3 0
## 1285 1500 US LGA DCA 0 3 0
## 1286 1500 RU EWR IAD 0 3 1
## 1287 1500 MQ LGA DCA 0 4 0
## 1288 1500 US LGA DCA 0 4 0
## 1289 1500 RU EWR IAD 0 4 0
## 1290 1500 US LGA DCA 0 5 0
## 1291 1500 RU EWR IAD 0 5 0
## 1292 1500 US LGA DCA 0 6 0
## 1293 1500 RU EWR IAD 0 6 0
## 1294 1500 MQ LGA DCA 0 7 1
## 1295 1500 US LGA DCA 0 7 0
## 1296 1500 RU EWR IAD 0 7 0
## 1297 1500 RU EWR IAD 0 1 1
## 1298 1500 MQ LGA DCA 0 2 0
## 1299 1500 US LGA DCA 0 2 0
## 1300 1500 RU EWR IAD 0 2 1
## 1301 1500 MQ LGA DCA 0 3 0
## 1302 1500 US LGA DCA 0 3 1
## 1303 1500 RU EWR IAD 0 3 0
## 1304 1500 MQ LGA DCA 0 4 1
## 1305 1500 US LGA DCA 0 4 0
## 1306 1500 RU EWR IAD 0 4 0
## 1307 1500 MQ LGA DCA 0 5 0
## 1308 1500 US LGA DCA 0 5 0
## 1309 1500 RU EWR IAD 0 5 1
## 1310 1500 US LGA DCA 0 6 0
## 1311 1500 RU EWR IAD 0 6 0
## 1312 1515 RU EWR IAD 0 4 0
## 1313 1515 RU EWR IAD 0 5 1
## 1314 1515 RU EWR IAD 0 6 0
## 1315 1515 RU EWR IAD 0 7 1
## 1316 1515 RU EWR IAD 0 1 1
## 1317 1520 MQ JFK DCA 0 6 0
## 1318 1525 RU EWR DCA 0 4 0
## 1319 1525 RU EWR DCA 0 5 0
## 1320 1525 RU EWR DCA 0 1 1
## 1321 1525 RU EWR DCA 0 2 1
## 1322 1525 RU EWR DCA 0 3 0
## 1323 1525 RU EWR DCA 0 4 0
## 1324 1525 RU EWR DCA 0 5 0
## 1325 1525 RU EWR DCA 0 1 0
## 1326 1525 RU EWR DCA 0 2 0
## 1327 1525 RU EWR DCA 0 3 0
## 1328 1525 RU EWR DCA 0 4 0
## 1329 1525 RU EWR DCA 0 5 1
## 1330 1525 RU EWR DCA 0 1 0
## 1331 1525 RU EWR DCA 0 2 1
## 1332 1525 RU EWR DCA 0 3 1
## 1333 1525 RU EWR DCA 0 4 0
## 1334 1525 RU EWR DCA 0 5 1
## 1335 1525 RU EWR DCA 1 1 1
## 1336 1525 RU EWR DCA 0 3 0
## 1337 1525 RU EWR DCA 0 4 1
## 1338 1525 RU EWR DCA 0 5 1
## 1339 1530 MQ JFK DCA 0 4 0
## 1340 1530 MQ JFK DCA 0 5 0
## 1341 1530 MQ JFK DCA 0 6 1
## 1342 1530 MQ JFK DCA 0 7 1
## 1343 1530 MQ JFK DCA 0 1 0
## 1344 1530 DL LGA DCA 0 2 0
## 1345 1530 MQ JFK DCA 0 2 0
## 1346 1530 DL LGA DCA 0 3 0
## 1347 1530 MQ JFK DCA 0 3 0
## 1348 1530 DL LGA DCA 0 4 0
## 1349 1530 MQ JFK DCA 0 4 0
## 1350 1530 DL LGA DCA 0 5 0
## 1351 1530 MQ JFK DCA 0 5 0
## 1352 1530 MQ JFK DCA 0 6 0
## 1353 1530 DL LGA DCA 0 7 0
## 1354 1530 MQ JFK DCA 0 7 0
## 1355 1530 DL LGA DCA 0 1 0
## 1356 1530 MQ JFK DCA 0 1 0
## 1357 1530 DL LGA DCA 0 2 0
## 1358 1530 MQ JFK DCA 0 2 0
## 1359 1530 DL LGA DCA 0 3 1
## 1360 1530 MQ JFK DCA 0 3 0
## 1361 1530 DL LGA DCA 0 4 0
## 1362 1530 MQ JFK DCA 0 4 0
## 1363 1530 DL LGA DCA 0 5 0
## 1364 1530 MQ JFK DCA 0 5 0
## 1365 1530 MQ JFK DCA 0 6 0
## 1366 1530 MQ JFK DCA 0 7 1
## 1367 1530 DL LGA DCA 0 1 0
## 1368 1530 MQ JFK DCA 0 1 0
## 1369 1530 DL LGA DCA 0 2 0
## 1370 1530 MQ JFK DCA 0 2 0
## 1371 1530 DL LGA DCA 0 3 0
## 1372 1530 MQ JFK DCA 0 3 0
## 1373 1530 DL LGA DCA 0 4 0
## 1374 1530 MQ JFK DCA 0 4 0
## 1375 1530 DL LGA DCA 0 5 0
## 1376 1530 MQ JFK DCA 0 5 1
## 1377 1530 MQ JFK DCA 0 6 0
## 1378 1530 DL LGA DCA 0 7 0
## 1379 1530 MQ JFK DCA 0 7 1
## 1380 1530 DL LGA DCA 1 1 1
## 1381 1530 MQ JFK DCA 1 1 1
## 1382 1530 MQ JFK DCA 0 2 1
## 1383 1530 DL LGA DCA 0 3 0
## 1384 1530 MQ JFK DCA 0 3 0
## 1385 1530 DL LGA DCA 0 4 0
## 1386 1530 MQ JFK DCA 0 4 1
## 1387 1530 DL LGA DCA 0 5 0
## 1388 1530 MQ JFK DCA 0 5 0
## 1389 1600 RU EWR DCA 0 6 0
## 1390 1600 US LGA DCA 0 7 0
## 1391 1600 MQ LGA DCA 0 1 1
## 1392 1600 US LGA DCA 0 1 0
## 1393 1600 MQ LGA DCA 0 2 0
## 1394 1600 US LGA DCA 0 2 0
## 1395 1600 MQ LGA DCA 0 3 1
## 1396 1600 US LGA DCA 0 3 1
## 1397 1600 MQ LGA DCA 0 4 0
## 1398 1600 US LGA DCA 0 4 0
## 1399 1600 MQ LGA DCA 0 5 1
## 1400 1600 US LGA DCA 0 5 0
## 1401 1600 RU EWR DCA 0 6 0
## 1402 1600 US LGA DCA 0 7 0
## 1403 1600 MQ LGA DCA 0 1 0
## 1404 1600 US LGA DCA 0 1 0
## 1405 1600 MQ LGA DCA 0 2 1
## 1406 1600 US LGA DCA 0 2 1
## 1407 1600 MQ LGA DCA 0 3 0
## 1408 1600 US LGA DCA 0 3 0
## 1409 1600 MQ LGA DCA 0 4 1
## 1410 1600 US LGA DCA 0 4 0
## 1411 1600 MQ LGA DCA 0 5 1
## 1412 1600 US LGA DCA 0 5 0
## 1413 1600 RU EWR DCA 0 6 0
## 1414 1600 US LGA DCA 0 7 1
## 1415 1600 MQ LGA DCA 0 1 0
## 1416 1600 US LGA DCA 0 1 0
## 1417 1600 MQ LGA DCA 0 2 0
## 1418 1600 US LGA DCA 0 2 0
## 1419 1600 MQ LGA DCA 0 3 0
## 1420 1600 US LGA DCA 0 3 0
## 1421 1600 MQ LGA DCA 0 4 0
## 1422 1600 US LGA DCA 0 4 0
## 1423 1600 RU EWR DCA 0 6 0
## 1424 1600 US LGA DCA 0 7 0
## 1425 1600 US LGA DCA 0 1 0
## 1426 1600 MQ LGA DCA 1 2 1
## 1427 1600 US LGA DCA 0 2 0
## 1428 1600 MQ LGA DCA 0 3 0
## 1429 1600 US LGA DCA 0 3 1
## 1430 1600 US LGA DCA 0 4 0
## 1431 1600 MQ LGA DCA 0 5 1
## 1432 1600 US LGA DCA 0 5 0
## 1433 1600 RU EWR DCA 0 6 0
## 1434 1605 RU EWR BWI 0 7 1
## 1435 1610 DH JFK IAD 0 5 0
## 1436 1610 DH JFK IAD 0 6 0
## 1437 1610 DH JFK IAD 0 7 0
## 1438 1610 DH JFK IAD 0 1 1
## 1439 1610 DH JFK IAD 0 2 0
## 1440 1610 DH JFK IAD 0 3 0
## 1441 1610 DH JFK IAD 0 4 0
## 1442 1610 DH JFK IAD 0 5 0
## 1443 1610 DH JFK IAD 0 7 0
## 1444 1610 DH JFK IAD 0 2 1
## 1445 1610 DH JFK IAD 0 3 0
## 1446 1610 DH JFK IAD 0 4 0
## 1447 1610 DH JFK IAD 0 5 0
## 1448 1610 DH JFK IAD 0 7 1
## 1449 1610 DH JFK IAD 0 1 0
## 1450 1610 DH JFK IAD 0 2 0
## 1451 1610 DH JFK IAD 0 3 0
## 1452 1610 DH JFK IAD 0 4 0
## 1453 1610 DH JFK IAD 0 5 0
## 1454 1610 DH JFK IAD 0 7 0
## 1455 1610 DH JFK IAD 0 1 0
## 1456 1610 DH JFK IAD 0 3 0
## 1457 1610 DH JFK IAD 0 4 0
## 1458 1610 DH JFK IAD 0 5 0
## 1459 1630 RU EWR DCA 0 4 0
## 1460 1630 RU EWR DCA 0 5 0
## 1461 1630 DL LGA DCA 0 6 0
## 1462 1630 DL LGA DCA 0 7 0
## 1463 1630 CO EWR DCA 0 7 1
## 1464 1630 DL LGA DCA 0 1 0
## 1465 1630 DL LGA DCA 0 2 0
## 1466 1630 RU EWR DCA 0 2 0
## 1467 1630 DL LGA DCA 0 3 0
## 1468 1630 RU EWR DCA 0 3 0
## 1469 1630 DL LGA DCA 0 4 0
## 1470 1630 RU EWR DCA 0 4 0
## 1471 1630 DL LGA DCA 0 5 0
## 1472 1630 RU EWR DCA 0 5 0
## 1473 1630 DL LGA DCA 0 6 0
## 1474 1630 DL LGA DCA 0 7 0
## 1475 1630 CO EWR DCA 0 7 0
## 1476 1630 DL LGA DCA 0 1 0
## 1477 1630 RU EWR DCA 0 1 0
## 1478 1630 DL LGA DCA 0 2 1
## 1479 1630 RU EWR DCA 0 2 0
## 1480 1630 DL LGA DCA 0 3 0
## 1481 1630 RU EWR DCA 0 3 0
## 1482 1630 DL LGA DCA 0 4 0
## 1483 1630 RU EWR DCA 0 4 0
## 1484 1630 DL LGA DCA 0 5 0
## 1485 1630 RU EWR DCA 0 5 1
## 1486 1630 DL LGA DCA 0 6 1
## 1487 1630 DL LGA DCA 0 7 0
## 1488 1630 CO EWR DCA 0 7 1
## 1489 1630 DL LGA DCA 0 1 0
## 1490 1630 RU EWR DCA 0 1 0
## 1491 1630 DL LGA DCA 0 2 1
## 1492 1630 RU EWR DCA 0 2 0
## 1493 1630 DL LGA DCA 0 3 1
## 1494 1630 RU EWR DCA 0 3 1
## 1495 1630 DL LGA DCA 0 4 1
## 1496 1630 RU EWR DCA 0 4 0
## 1497 1630 DL LGA DCA 0 5 0
## 1498 1630 RU EWR DCA 0 5 0
## 1499 1630 DL LGA DCA 0 6 0
## 1500 1630 DL LGA DCA 0 7 0
## 1501 1630 CO EWR DCA 0 7 0
## 1502 1630 DL LGA DCA 0 1 0
## 1503 1630 DL LGA DCA 0 2 1
## 1504 1630 RU EWR DCA 0 3 0
## 1505 1630 DL LGA DCA 0 4 0
## 1506 1630 RU EWR DCA 0 4 0
## 1507 1630 DL LGA DCA 0 5 0
## 1508 1630 RU EWR DCA 0 5 0
## 1509 1630 DL LGA DCA 0 6 0
## 1510 1640 DH JFK DCA 0 4 0
## 1511 1640 DH JFK DCA 0 5 0
## 1512 1640 DH JFK DCA 0 7 0
## 1513 1640 DH JFK DCA 0 1 1
## 1514 1640 DH JFK DCA 0 3 0
## 1515 1640 DH JFK DCA 0 4 1
## 1516 1640 DH JFK DCA 0 5 0
## 1517 1640 DH JFK DCA 0 6 1
## 1518 1640 DH JFK DCA 0 7 0
## 1519 1640 DH JFK DCA 0 1 0
## 1520 1640 DH JFK DCA 0 2 0
## 1521 1640 DH JFK DCA 0 3 0
## 1522 1640 DH JFK DCA 0 4 0
## 1523 1640 DH JFK DCA 0 5 0
## 1524 1640 DH JFK DCA 0 6 0
## 1525 1640 DH JFK DCA 0 7 1
## 1526 1640 DH JFK DCA 0 1 0
## 1527 1640 DH JFK DCA 0 2 0
## 1528 1640 DH JFK DCA 0 4 0
## 1529 1640 DH JFK DCA 0 5 0
## 1530 1640 DH JFK DCA 0 6 0
## 1531 1640 DH JFK DCA 0 7 0
## 1532 1640 DH JFK DCA 0 2 1
## 1533 1640 DH JFK DCA 0 3 0
## 1534 1640 DH JFK DCA 0 4 0
## 1535 1640 DH JFK DCA 0 5 0
## 1536 1640 DH JFK DCA 0 6 0
## 1537 1645 DH JFK IAD 0 4 0
## 1538 1645 DH JFK IAD 0 5 0
## 1539 1645 DH JFK IAD 0 6 0
## 1540 1645 DH JFK IAD 0 7 0
## 1541 1645 DH JFK IAD 0 1 0
## 1542 1645 DH JFK IAD 0 2 0
## 1543 1645 DH JFK IAD 0 3 0
## 1544 1645 DH JFK IAD 0 4 0
## 1545 1645 DH JFK IAD 0 5 0
## 1546 1645 DH JFK IAD 0 6 0
## 1547 1645 DH JFK IAD 0 7 0
## 1548 1645 DH JFK IAD 0 1 0
## 1549 1645 DH JFK IAD 0 2 0
## 1550 1645 DH JFK IAD 0 3 0
## 1551 1645 DH JFK IAD 0 4 0
## 1552 1645 DH JFK IAD 0 5 0
## 1553 1645 DH JFK IAD 0 6 0
## 1554 1645 DH JFK IAD 0 7 0
## 1555 1645 DH JFK IAD 0 1 0
## 1556 1645 DH JFK IAD 0 2 0
## 1557 1645 DH JFK IAD 0 3 0
## 1558 1645 DH JFK IAD 0 4 0
## 1559 1645 DH JFK IAD 0 5 0
## 1560 1645 DH JFK IAD 0 6 0
## 1561 1645 DH JFK IAD 0 7 0
## 1562 1645 DH JFK IAD 0 1 1
## 1563 1645 DH JFK IAD 0 3 0
## 1564 1645 DH JFK IAD 0 4 0
## 1565 1645 DH JFK IAD 0 5 0
## 1566 1645 DH JFK IAD 0 6 0
## 1567 1700 US LGA DCA 0 4 0
## 1568 1700 RU EWR IAD 0 4 0
## 1569 1700 US LGA DCA 0 5 0
## 1570 1700 RU EWR IAD 0 5 0
## 1571 1700 US LGA DCA 0 6 0
## 1572 1700 MQ LGA DCA 0 7 0
## 1573 1700 US LGA DCA 0 7 0
## 1574 1700 MQ LGA DCA 0 1 0
## 1575 1700 US LGA DCA 0 1 0
## 1576 1700 MQ LGA DCA 0 2 0
## 1577 1700 US LGA DCA 0 2 0
## 1578 1700 RU EWR IAD 0 2 0
## 1579 1700 US LGA DCA 0 3 0
## 1580 1700 RU EWR IAD 0 3 0
## 1581 1700 US LGA DCA 0 4 1
## 1582 1700 RU EWR IAD 0 4 0
## 1583 1700 MQ LGA DCA 0 5 0
## 1584 1700 US LGA DCA 0 5 0
## 1585 1700 RU EWR IAD 0 5 0
## 1586 1700 US LGA DCA 0 6 0
## 1587 1700 RU EWR IAD 0 6 0
## 1588 1700 MQ LGA DCA 0 7 0
## 1589 1700 US LGA DCA 0 7 0
## 1590 1700 RU EWR IAD 0 7 0
## 1591 1700 MQ LGA DCA 0 1 0
## 1592 1700 US LGA DCA 0 1 1
## 1593 1700 RU EWR IAD 0 1 0
## 1594 1700 MQ LGA DCA 0 2 1
## 1595 1700 US LGA DCA 0 2 0
## 1596 1700 RU EWR IAD 0 2 0
## 1597 1700 MQ LGA DCA 0 3 0
## 1598 1700 US LGA DCA 0 3 0
## 1599 1700 RU EWR IAD 0 3 0
## 1600 1700 MQ LGA DCA 0 4 1
## 1601 1700 US LGA DCA 0 4 0
## 1602 1700 MQ LGA DCA 0 5 1
## 1603 1700 US LGA DCA 0 5 0
## 1604 1700 RU EWR IAD 0 5 1
## 1605 1700 US LGA DCA 0 6 0
## 1606 1700 RU EWR IAD 0 6 0
## 1607 1700 MQ LGA DCA 0 7 1
## 1608 1700 MQ LGA DCA 0 1 0
## 1609 1700 US LGA DCA 0 1 0
## 1610 1700 RU EWR IAD 0 1 0
## 1611 1700 US LGA DCA 0 2 0
## 1612 1700 RU EWR IAD 0 2 0
## 1613 1700 MQ LGA DCA 0 3 0
## 1614 1700 US LGA DCA 0 3 0
## 1615 1700 RU EWR IAD 0 3 0
## 1616 1700 MQ LGA DCA 0 4 0
## 1617 1700 US LGA DCA 0 4 0
## 1618 1700 RU EWR IAD 0 4 0
## 1619 1700 MQ LGA DCA 0 5 0
## 1620 1700 US LGA DCA 0 5 0
## 1621 1700 RU EWR IAD 0 5 0
## 1622 1700 US LGA DCA 0 6 0
## 1623 1700 RU EWR IAD 0 6 0
## 1624 1700 MQ LGA DCA 0 7 0
## 1625 1700 US LGA DCA 0 7 0
## 1626 1700 RU EWR IAD 0 7 0
## 1627 1700 US LGA DCA 0 1 0
## 1628 1700 RU EWR IAD 0 1 1
## 1629 1700 US LGA DCA 0 2 0
## 1630 1700 MQ LGA DCA 0 3 1
## 1631 1700 US LGA DCA 0 3 0
## 1632 1700 RU EWR IAD 0 3 0
## 1633 1700 MQ LGA DCA 0 4 0
## 1634 1700 US LGA DCA 0 4 0
## 1635 1700 RU EWR IAD 0 4 0
## 1636 1700 MQ LGA DCA 0 5 0
## 1637 1700 US LGA DCA 0 5 1
## 1638 1700 RU EWR IAD 0 5 1
## 1639 1700 US LGA DCA 0 6 0
## 1640 1700 RU EWR IAD 0 6 0
## 1641 1710 DH EWR IAD 0 4 0
## 1642 1710 DH EWR IAD 0 6 0
## 1643 1710 DH EWR IAD 0 7 1
## 1644 1710 DH EWR IAD 0 1 1
## 1645 1710 DH EWR IAD 0 2 0
## 1646 1710 DH EWR IAD 0 3 0
## 1647 1710 DH EWR IAD 0 4 0
## 1648 1710 DH EWR IAD 0 5 0
## 1649 1710 DH EWR IAD 0 6 0
## 1650 1710 DH EWR IAD 0 7 0
## 1651 1710 DH EWR IAD 0 1 0
## 1652 1710 DH EWR IAD 0 2 0
## 1653 1710 DH EWR IAD 0 3 0
## 1654 1710 DH EWR IAD 0 5 0
## 1655 1710 DH EWR IAD 0 6 0
## 1656 1710 DH EWR IAD 0 7 1
## 1657 1710 DH EWR IAD 0 1 0
## 1658 1710 DH EWR IAD 0 2 0
## 1659 1710 DH EWR IAD 0 3 1
## 1660 1710 DH EWR IAD 0 4 0
## 1661 1710 DH EWR IAD 0 5 1
## 1662 1710 DH EWR IAD 0 6 0
## 1663 1710 DH EWR IAD 0 7 0
## 1664 1710 DH EWR IAD 1 2 1
## 1665 1710 DH EWR IAD 0 3 1
## 1666 1710 DH EWR IAD 0 4 0
## 1667 1710 DH EWR IAD 0 5 0
## 1668 1710 DH EWR IAD 0 6 0
## 1669 1715 DH LGA IAD 0 4 0
## 1670 1715 DH JFK IAD 0 4 0
## 1671 1715 DH LGA IAD 0 5 0
## 1672 1715 DH JFK IAD 0 5 0
## 1673 1715 DH LGA IAD 0 6 0
## 1674 1715 DH JFK IAD 0 6 0
## 1675 1715 DH LGA IAD 0 7 1
## 1676 1715 DH JFK IAD 0 7 0
## 1677 1715 DH LGA IAD 0 1 1
## 1678 1715 DH JFK IAD 0 1 0
## 1679 1715 DH LGA IAD 0 2 0
## 1680 1715 DH JFK IAD 0 2 1
## 1681 1715 DH LGA IAD 0 3 1
## 1682 1715 DH JFK IAD 0 3 1
## 1683 1715 DH LGA IAD 0 4 1
## 1684 1715 DH JFK IAD 0 4 0
## 1685 1715 DH LGA IAD 0 5 1
## 1686 1715 DH JFK IAD 0 5 0
## 1687 1715 DH LGA IAD 0 6 0
## 1688 1715 DH JFK IAD 0 6 0
## 1689 1715 DH LGA IAD 0 7 0
## 1690 1715 DH JFK IAD 0 7 0
## 1691 1715 DH LGA IAD 0 1 0
## 1692 1715 DH JFK IAD 0 1 0
## 1693 1715 DH LGA IAD 0 2 1
## 1694 1715 DH JFK IAD 0 2 0
## 1695 1715 DH LGA IAD 0 3 0
## 1696 1715 DH JFK IAD 0 3 0
## 1697 1715 DH JFK IAD 0 4 0
## 1698 1715 DH LGA IAD 0 5 1
## 1699 1715 DH JFK IAD 0 5 0
## 1700 1715 DH LGA IAD 0 6 0
## 1701 1715 DH JFK IAD 0 6 1
## 1702 1715 DH LGA IAD 0 7 1
## 1703 1715 DH JFK IAD 0 7 1
## 1704 1715 DH LGA IAD 0 1 0
## 1705 1715 DH JFK IAD 0 1 0
## 1706 1715 DH LGA IAD 0 2 0
## 1707 1715 DH JFK IAD 0 2 0
## 1708 1715 DH LGA IAD 0 3 0
## 1709 1715 DH JFK IAD 0 3 0
## 1710 1715 DH LGA IAD 0 4 0
## 1711 1715 DH JFK IAD 0 4 0
## 1712 1715 DH LGA IAD 0 5 0
## 1713 1715 DH JFK IAD 0 5 0
## 1714 1715 DH LGA IAD 0 6 0
## 1715 1715 DH JFK IAD 0 6 1
## 1716 1715 DH LGA IAD 0 7 1
## 1717 1715 DH JFK IAD 0 7 1
## 1718 1715 DH LGA IAD 0 1 1
## 1719 1715 DH JFK IAD 0 1 1
## 1720 1715 DH LGA IAD 1 2 1
## 1721 1715 DH JFK IAD 1 2 1
## 1722 1715 DH LGA IAD 0 3 0
## 1723 1715 DH JFK IAD 0 3 1
## 1724 1715 DH LGA IAD 0 4 1
## 1725 1715 DH JFK IAD 0 4 0
## 1726 1715 DH LGA IAD 0 5 0
## 1727 1715 DH JFK IAD 0 5 0
## 1728 1715 DH LGA IAD 0 6 0
## 1729 1715 DH JFK IAD 0 6 0
## 1730 1720 RU EWR BWI 0 4 0
## 1731 1720 RU EWR BWI 0 5 0
## 1732 1720 RU EWR BWI 0 6 0
## 1733 1720 RU EWR BWI 0 2 1
## 1734 1720 RU EWR BWI 0 3 1
## 1735 1720 RU EWR BWI 0 4 0
## 1736 1720 RU EWR BWI 0 5 0
## 1737 1720 RU EWR BWI 0 6 0
## 1738 1720 RU EWR BWI 0 7 0
## 1739 1720 RU EWR BWI 0 1 0
## 1740 1720 RU EWR BWI 0 2 1
## 1741 1720 RU EWR BWI 0 3 0
## 1742 1720 RU EWR BWI 0 4 1
## 1743 1720 RU EWR BWI 0 5 1
## 1744 1720 RU EWR BWI 0 6 0
## 1745 1720 RU EWR BWI 0 1 0
## 1746 1720 RU EWR BWI 0 2 1
## 1747 1720 RU EWR BWI 0 3 1
## 1748 1720 RU EWR BWI 0 4 1
## 1749 1720 RU EWR BWI 0 5 0
## 1750 1720 RU EWR BWI 0 6 0
## 1751 1720 RU EWR BWI 0 7 0
## 1752 1720 RU EWR BWI 0 1 1
## 1753 1720 RU EWR BWI 0 3 1
## 1754 1720 RU EWR BWI 0 4 0
## 1755 1720 RU EWR BWI 0 5 1
## 1756 1720 RU EWR BWI 0 6 0
## 1757 1725 RU EWR IAD 0 6 0
## 1758 1730 DL LGA DCA 0 4 0
## 1759 1730 CO EWR DCA 0 4 0
## 1760 1730 DL LGA DCA 0 5 0
## 1761 1730 CO EWR DCA 0 5 0
## 1762 1730 RU EWR DCA 0 6 0
## 1763 1730 RU EWR DCA 0 7 1
## 1764 1730 DL LGA DCA 0 1 0
## 1765 1730 CO EWR DCA 0 1 1
## 1766 1730 DL LGA DCA 0 2 0
## 1767 1730 CO EWR DCA 0 2 1
## 1768 1730 DL LGA DCA 0 3 0
## 1769 1730 CO EWR DCA 0 3 1
## 1770 1730 DL LGA DCA 0 4 0
## 1771 1730 CO EWR DCA 0 4 0
## 1772 1730 DL LGA DCA 0 5 0
## 1773 1730 CO EWR DCA 0 5 0
## 1774 1730 RU EWR DCA 0 6 0
## 1775 1730 DL LGA DCA 0 7 0
## 1776 1730 RU EWR DCA 0 7 0
## 1777 1730 DL LGA DCA 0 1 0
## 1778 1730 CO EWR DCA 0 1 1
## 1779 1730 DL LGA DCA 0 2 0
## 1780 1730 CO EWR DCA 0 2 1
## 1781 1730 DL LGA DCA 0 3 0
## 1782 1730 CO EWR DCA 0 3 1
## 1783 1730 DL LGA DCA 0 4 0
## 1784 1730 DL LGA DCA 0 5 0
## 1785 1730 CO EWR DCA 0 5 1
## 1786 1730 RU EWR DCA 0 6 0
## 1787 1730 CO EWR DCA 0 1 1
## 1788 1730 DL LGA DCA 0 2 0
## 1789 1730 CO EWR DCA 0 2 0
## 1790 1730 DL LGA DCA 0 3 0
## 1791 1730 CO EWR DCA 0 3 1
## 1792 1730 DL LGA DCA 0 4 1
## 1793 1730 CO EWR DCA 0 4 1
## 1794 1730 DL LGA DCA 0 5 0
## 1795 1730 CO EWR DCA 0 5 0
## 1796 1730 RU EWR DCA 0 6 0
## 1797 1730 DL LGA DCA 0 7 0
## 1798 1730 RU EWR DCA 0 7 0
## 1799 1730 DL LGA DCA 0 1 0
## 1800 1730 CO EWR DCA 1 2 1
## 1801 1730 DL LGA DCA 0 3 0
## 1802 1730 CO EWR DCA 0 3 0
## 1803 1730 DL LGA DCA 0 4 0
## 1804 1730 CO EWR DCA 0 4 0
## 1805 1730 DL LGA DCA 0 5 0
## 1806 1730 CO EWR DCA 0 5 0
## 1807 1730 RU EWR DCA 0 6 0
## 1808 1800 US LGA DCA 0 7 0
## 1809 1800 US LGA DCA 0 1 0
## 1810 1800 US LGA DCA 0 2 0
## 1811 1800 US LGA DCA 0 3 0
## 1812 1800 US LGA DCA 0 4 0
## 1813 1800 US LGA DCA 0 5 0
## 1814 1800 DH JFK IAD 0 6 0
## 1815 1800 US LGA DCA 0 7 0
## 1816 1800 US LGA DCA 0 1 0
## 1817 1800 US LGA DCA 0 2 0
## 1818 1800 US LGA DCA 0 3 0
## 1819 1800 US LGA DCA 0 4 0
## 1820 1800 US LGA DCA 0 5 0
## 1821 1800 DH JFK IAD 0 6 1
## 1822 1800 US LGA DCA 0 7 0
## 1823 1800 US LGA DCA 0 1 0
## 1824 1800 US LGA DCA 0 2 0
## 1825 1800 US LGA DCA 0 3 0
## 1826 1800 US LGA DCA 0 4 0
## 1827 1800 US LGA DCA 0 5 0
## 1828 1800 DH JFK IAD 0 6 0
## 1829 1800 US LGA DCA 0 7 0
## 1830 1800 US LGA DCA 0 1 0
## 1831 1800 US LGA DCA 0 3 0
## 1832 1800 US LGA DCA 0 4 0
## 1833 1800 US LGA DCA 0 5 0
## 1834 1800 DH JFK IAD 0 6 0
## 1835 1830 MQ JFK DCA 0 4 0
## 1836 1830 MQ JFK DCA 0 5 0
## 1837 1830 DL LGA DCA 0 6 0
## 1838 1830 MQ JFK DCA 0 6 0
## 1839 1830 DL LGA DCA 0 7 0
## 1840 1830 MQ JFK DCA 0 7 1
## 1841 1830 DL LGA DCA 0 1 0
## 1842 1830 DL LGA DCA 0 2 0
## 1843 1830 MQ JFK DCA 0 2 0
## 1844 1830 DL LGA DCA 0 3 0
## 1845 1830 MQ JFK DCA 0 3 1
## 1846 1830 DL LGA DCA 0 4 0
## 1847 1830 MQ JFK DCA 0 4 0
## 1848 1830 DL LGA DCA 0 5 0
## 1849 1830 MQ JFK DCA 0 5 1
## 1850 1830 DL LGA DCA 0 6 0
## 1851 1830 MQ JFK DCA 0 6 0
## 1852 1830 DL LGA DCA 0 7 0
## 1853 1830 MQ JFK DCA 0 7 1
## 1854 1830 DL LGA DCA 0 1 0
## 1855 1830 MQ JFK DCA 0 1 0
## 1856 1830 DL LGA DCA 0 2 0
## 1857 1830 MQ JFK DCA 0 2 1
## 1858 1830 DL LGA DCA 0 3 0
## 1859 1830 MQ JFK DCA 0 3 0
## 1860 1830 DL LGA DCA 0 4 0
## 1861 1830 MQ JFK DCA 0 4 0
## 1862 1830 DL LGA DCA 0 5 0
## 1863 1830 MQ JFK DCA 0 5 1
## 1864 1830 DL LGA DCA 0 6 0
## 1865 1830 MQ JFK DCA 0 6 0
## 1866 1830 DL LGA DCA 0 7 1
## 1867 1830 MQ JFK DCA 0 7 1
## 1868 1830 DL LGA DCA 0 1 0
## 1869 1830 MQ JFK DCA 0 1 1
## 1870 1830 DL LGA DCA 0 2 0
## 1871 1830 MQ JFK DCA 0 2 0
## 1872 1830 DL LGA DCA 0 3 0
## 1873 1830 MQ JFK DCA 0 3 0
## 1874 1830 DL LGA DCA 0 4 0
## 1875 1830 MQ JFK DCA 0 4 0
## 1876 1830 DL LGA DCA 0 5 0
## 1877 1830 MQ JFK DCA 0 5 0
## 1878 1830 DL LGA DCA 0 6 0
## 1879 1830 MQ JFK DCA 0 6 0
## 1880 1830 DL LGA DCA 0 7 0
## 1881 1830 MQ JFK DCA 0 7 0
## 1882 1830 MQ JFK DCA 1 1 1
## 1883 1830 DL LGA DCA 0 2 1
## 1884 1830 MQ JFK DCA 1 2 1
## 1885 1830 DL LGA DCA 0 3 0
## 1886 1830 MQ JFK DCA 0 3 0
## 1887 1830 DL LGA DCA 0 4 0
## 1888 1830 MQ JFK DCA 0 4 0
## 1889 1830 DL LGA DCA 0 5 0
## 1890 1830 MQ JFK DCA 0 5 0
## 1891 1830 DL LGA DCA 0 6 0
## 1892 1830 MQ JFK DCA 0 6 0
## 1893 1900 MQ LGA DCA 0 4 0
## 1894 1900 RU EWR IAD 0 4 0
## 1895 1900 RU EWR DCA 0 4 0
## 1896 1900 US LGA DCA 0 5 0
## 1897 1900 RU EWR IAD 0 5 0
## 1898 1900 RU EWR DCA 0 5 0
## 1899 1900 US LGA DCA 0 6 0
## 1900 1900 MQ LGA DCA 0 7 1
## 1901 1900 US LGA DCA 0 7 0
## 1902 1900 RU EWR IAD 0 7 1
## 1903 1900 RU EWR DCA 0 7 1
## 1904 1900 MQ LGA DCA 0 1 1
## 1905 1900 US LGA DCA 0 1 0
## 1906 1900 RU EWR DCA 0 1 1
## 1907 1900 MQ LGA DCA 0 2 0
## 1908 1900 US LGA DCA 0 2 0
## 1909 1900 CO EWR DCA 0 2 1
## 1910 1900 RU EWR IAD 0 2 1
## 1911 1900 MQ LGA DCA 0 3 1
## 1912 1900 US LGA DCA 0 3 0
## 1913 1900 CO EWR DCA 0 3 1
## 1914 1900 RU EWR IAD 0 3 1
## 1915 1900 MQ LGA DCA 0 4 0
## 1916 1900 US LGA DCA 0 4 1
## 1917 1900 CO EWR DCA 0 4 0
## 1918 1900 RU EWR IAD 0 4 0
## 1919 1900 MQ LGA DCA 0 5 1
## 1920 1900 US LGA DCA 0 5 0
## 1921 1900 CO EWR DCA 0 5 0
## 1922 1900 RU EWR IAD 0 5 0
## 1923 1900 US LGA DCA 0 6 0
## 1924 1900 MQ LGA DCA 0 7 0
## 1925 1900 US LGA DCA 0 7 0
## 1926 1900 CO EWR DCA 0 7 0
## 1927 1900 RU EWR IAD 0 7 0
## 1928 1900 MQ LGA DCA 0 1 0
## 1929 1900 US LGA DCA 0 1 0
## 1930 1900 CO EWR DCA 0 1 0
## 1931 1900 RU EWR IAD 0 1 0
## 1932 1900 MQ LGA DCA 0 2 1
## 1933 1900 US LGA DCA 0 2 0
## 1934 1900 CO EWR DCA 0 2 1
## 1935 1900 RU EWR IAD 0 2 1
## 1936 1900 MQ LGA DCA 0 3 0
## 1937 1900 US LGA DCA 0 3 0
## 1938 1900 CO EWR DCA 0 3 0
## 1939 1900 RU EWR IAD 0 3 0
## 1940 1900 MQ LGA DCA 0 4 1
## 1941 1900 US LGA DCA 0 4 1
## 1942 1900 CO EWR DCA 0 4 1
## 1943 1900 RU EWR IAD 0 4 1
## 1944 1900 MQ LGA DCA 0 5 1
## 1945 1900 US LGA DCA 0 5 1
## 1946 1900 RU EWR IAD 0 5 1
## 1947 1900 US LGA DCA 0 6 0
## 1948 1900 MQ LGA DCA 0 7 1
## 1949 1900 US LGA DCA 0 7 0
## 1950 1900 CO EWR DCA 0 7 1
## 1951 1900 MQ LGA DCA 0 1 1
## 1952 1900 US LGA DCA 0 1 0
## 1953 1900 CO EWR DCA 0 1 0
## 1954 1900 RU EWR IAD 0 1 1
## 1955 1900 MQ LGA DCA 0 2 1
## 1956 1900 US LGA DCA 0 2 0
## 1957 1900 CO EWR DCA 0 2 0
## 1958 1900 RU EWR IAD 0 2 0
## 1959 1900 MQ LGA DCA 0 3 0
## 1960 1900 US LGA DCA 0 3 0
## 1961 1900 CO EWR DCA 0 3 0
## 1962 1900 RU EWR IAD 0 3 0
## 1963 1900 MQ LGA DCA 0 4 0
## 1964 1900 US LGA DCA 0 4 0
## 1965 1900 CO EWR DCA 0 4 0
## 1966 1900 RU EWR IAD 0 4 0
## 1967 1900 MQ LGA DCA 0 5 0
## 1968 1900 US LGA DCA 0 5 0
## 1969 1900 CO EWR DCA 0 5 1
## 1970 1900 RU EWR IAD 0 5 0
## 1971 1900 US LGA DCA 0 6 0
## 1972 1900 MQ LGA DCA 0 7 0
## 1973 1900 US LGA DCA 0 7 0
## 1974 1900 CO EWR DCA 0 7 0
## 1975 1900 RU EWR IAD 0 7 1
## 1976 1900 MQ LGA DCA 1 1 1
## 1977 1900 US LGA DCA 0 1 0
## 1978 1900 CO EWR DCA 0 1 1
## 1979 1900 RU EWR IAD 0 1 1
## 1980 1900 MQ LGA DCA 0 3 1
## 1981 1900 US LGA DCA 0 3 0
## 1982 1900 CO EWR DCA 0 3 1
## 1983 1900 RU EWR IAD 0 3 0
## 1984 1900 MQ LGA DCA 0 4 0
## 1985 1900 US LGA DCA 0 4 0
## 1986 1900 CO EWR DCA 0 4 0
## 1987 1900 RU EWR IAD 0 4 0
## 1988 1900 US LGA DCA 0 5 0
## 1989 1900 CO EWR DCA 0 5 0
## 1990 1900 RU EWR IAD 0 5 1
## 1991 1900 US LGA DCA 0 6 0
## 1992 1930 DL LGA DCA 0 1 1
## 1993 1930 DL LGA DCA 0 2 0
## 1994 1930 DL LGA DCA 0 3 0
## 1995 1930 DL LGA DCA 0 4 0
## 1996 1930 DL LGA DCA 0 5 0
## 1997 1930 DL LGA DCA 0 7 0
## 1998 1930 DL LGA DCA 0 1 0
## 1999 1930 DL LGA DCA 0 2 0
## 2000 1930 DL LGA DCA 0 3 1
## 2001 1930 DL LGA DCA 0 4 1
## 2002 1930 DL LGA DCA 0 5 0
## 2003 1930 DL LGA DCA 0 1 0
## 2004 1930 DL LGA DCA 0 2 0
## 2005 1930 DL LGA DCA 0 3 0
## 2006 1930 DL LGA DCA 0 4 0
## 2007 1930 DL LGA DCA 0 5 0
## 2008 1930 DL LGA DCA 0 7 0
## 2009 1930 DL LGA DCA 0 1 0
## 2010 1930 DL LGA DCA 0 4 0
## 2011 1930 DL LGA DCA 0 5 0
## 2012 2000 US LGA DCA 0 7 0
## 2013 2000 US LGA DCA 0 1 0
## 2014 2000 US LGA DCA 0 2 0
## 2015 2000 US LGA DCA 0 3 1
## 2016 2000 US LGA DCA 0 4 1
## 2017 2000 US LGA DCA 0 5 0
## 2018 2000 US LGA DCA 0 7 0
## 2019 2000 US LGA DCA 0 1 0
## 2020 2000 US LGA DCA 0 2 0
## 2021 2000 US LGA DCA 0 3 1
## 2022 2000 US LGA DCA 0 5 0
## 2023 2000 US LGA DCA 0 7 0
## 2024 2000 US LGA DCA 0 1 0
## 2025 2000 US LGA DCA 0 2 0
## 2026 2000 US LGA DCA 0 3 0
## 2027 2000 US LGA DCA 0 4 0
## 2028 2000 US LGA DCA 0 5 0
## 2029 2000 US LGA DCA 0 7 0
## 2030 2000 US LGA DCA 0 1 0
## 2031 2000 US LGA DCA 0 3 1
## 2032 2000 US LGA DCA 0 4 0
## 2033 2000 US LGA DCA 0 5 0
## 2034 2030 DL LGA DCA 0 4 0
## 2035 2030 DL LGA DCA 0 5 0
## 2036 2030 DL LGA DCA 0 6 0
## 2037 2030 DL LGA DCA 0 7 0
## 2038 2030 DL LGA DCA 0 1 0
## 2039 2030 DL LGA DCA 0 2 0
## 2040 2030 DL LGA DCA 0 3 0
## 2041 2030 DL LGA DCA 0 4 0
## 2042 2030 DL LGA DCA 0 5 0
## 2043 2030 DL LGA DCA 0 6 0
## 2044 2030 DL LGA DCA 0 7 0
## 2045 2030 DL LGA DCA 0 1 0
## 2046 2030 DL LGA DCA 0 2 1
## 2047 2030 DL LGA DCA 0 3 1
## 2048 2030 DL LGA DCA 0 4 1
## 2049 2030 DL LGA DCA 0 5 0
## 2050 2030 DL LGA DCA 0 6 0
## 2051 2030 DL LGA DCA 0 7 0
## 2052 2030 DL LGA DCA 0 1 0
## 2053 2030 DL LGA DCA 0 2 0
## 2054 2030 DL LGA DCA 0 3 0
## 2055 2030 DL LGA DCA 0 4 0
## 2056 2030 DL LGA DCA 0 5 0
## 2057 2030 DL LGA DCA 0 6 0
## 2058 2030 DL LGA DCA 0 7 0
## 2059 2030 DL LGA DCA 0 1 0
## 2060 2030 DL LGA DCA 0 2 1
## 2061 2030 DL LGA DCA 0 3 1
## 2062 2030 DL LGA DCA 0 4 0
## 2063 2030 DL LGA DCA 0 5 0
## 2064 2030 DL LGA DCA 0 6 0
## 2065 2100 US LGA DCA 0 4 0
## 2066 2100 US LGA DCA 0 5 0
## 2067 2100 RU EWR DCA 0 5 0
## 2068 2100 US LGA DCA 0 7 0
## 2069 2100 US LGA DCA 0 1 0
## 2070 2100 RU EWR DCA 0 1 0
## 2071 2100 US LGA DCA 0 2 0
## 2072 2100 RU EWR DCA 0 2 1
## 2073 2100 US LGA DCA 0 3 0
## 2074 2100 RU EWR DCA 0 3 0
## 2075 2100 US LGA DCA 0 4 0
## 2076 2100 RU EWR DCA 0 4 0
## 2077 2100 US LGA DCA 0 5 0
## 2078 2100 RU EWR DCA 0 5 0
## 2079 2100 US LGA DCA 0 7 0
## 2080 2100 US LGA DCA 0 1 0
## 2081 2100 RU EWR DCA 0 1 0
## 2082 2100 US LGA DCA 0 2 0
## 2083 2100 RU EWR DCA 0 2 0
## 2084 2100 US LGA DCA 0 3 0
## 2085 2100 RU EWR DCA 0 3 0
## 2086 2100 US LGA DCA 0 4 1
## 2087 2100 RU EWR DCA 0 4 1
## 2088 2100 US LGA DCA 0 5 0
## 2089 2100 RU EWR DCA 0 5 0
## 2090 2100 US LGA DCA 0 7 0
## 2091 2100 US LGA DCA 0 1 0
## 2092 2100 RU EWR DCA 0 1 0
## 2093 2100 US LGA DCA 0 2 0
## 2094 2100 RU EWR DCA 0 2 0
## 2095 2100 US LGA DCA 0 3 0
## 2096 2100 RU EWR DCA 0 3 0
## 2097 2100 US LGA DCA 0 4 1
## 2098 2100 RU EWR DCA 0 4 0
## 2099 2100 US LGA DCA 0 5 0
## 2100 2100 RU EWR DCA 0 5 0
## 2101 2100 US LGA DCA 0 7 1
## 2102 2100 US LGA DCA 0 1 1
## 2103 2100 RU EWR DCA 0 1 0
## 2104 2100 US LGA DCA 0 3 0
## 2105 2100 RU EWR DCA 0 3 1
## 2106 2100 US LGA DCA 0 4 0
## 2107 2100 RU EWR DCA 0 4 0
## 2108 2100 US LGA DCA 0 5 0
## 2109 2100 RU EWR DCA 0 5 0
## 2110 2120 DH JFK IAD 0 4 0
## 2111 2120 DH LGA IAD 0 4 0
## 2112 2120 DH EWR IAD 0 4 0
## 2113 2120 DH JFK IAD 0 5 1
## 2114 2120 DH LGA IAD 0 5 0
## 2115 2120 DH JFK IAD 0 6 1
## 2116 2120 DH LGA IAD 0 6 0
## 2117 2120 DH EWR IAD 0 6 0
## 2118 2120 DH JFK IAD 0 7 0
## 2119 2120 DH LGA IAD 0 7 0
## 2120 2120 DH EWR IAD 0 7 1
## 2121 2120 DH JFK IAD 0 1 1
## 2122 2120 DH LGA IAD 0 1 0
## 2123 2120 DH EWR IAD 0 1 1
## 2124 2120 DH JFK IAD 0 2 1
## 2125 2120 DH LGA IAD 0 2 0
## 2126 2120 DH EWR IAD 0 2 0
## 2127 2120 DH JFK IAD 0 3 0
## 2128 2120 DH EWR IAD 0 3 0
## 2129 2120 DH LGA IAD 0 4 1
## 2130 2120 DH JFK IAD 0 4 0
## 2131 2120 DH EWR IAD 0 4 0
## 2132 2120 DH LGA IAD 0 5 0
## 2133 2120 DH JFK IAD 0 5 0
## 2134 2120 DH EWR IAD 0 5 0
## 2135 2120 DH LGA IAD 0 6 0
## 2136 2120 DH JFK IAD 0 6 0
## 2137 2120 DH EWR IAD 0 6 0
## 2138 2120 DH LGA IAD 0 7 0
## 2139 2120 DH JFK IAD 0 7 1
## 2140 2120 DH EWR IAD 0 7 0
## 2141 2120 DH LGA IAD 0 1 0
## 2142 2120 DH JFK IAD 0 1 0
## 2143 2120 DH EWR IAD 0 1 0
## 2144 2120 DH LGA IAD 0 2 0
## 2145 2120 DH JFK IAD 0 2 0
## 2146 2120 DH EWR IAD 0 2 0
## 2147 2120 DH LGA IAD 0 3 0
## 2148 2120 DH JFK IAD 0 3 0
## 2149 2120 DH EWR IAD 0 3 1
## 2150 2120 DH LGA IAD 0 4 1
## 2151 2120 DH JFK IAD 0 4 0
## 2152 2120 DH EWR IAD 0 4 0
## 2153 2120 DH LGA IAD 0 5 0
## 2154 2120 DH JFK IAD 0 5 0
## 2155 2120 DH EWR IAD 0 5 0
## 2156 2120 DH LGA IAD 0 6 1
## 2157 2120 DH JFK IAD 0 6 1
## 2158 2120 DH EWR IAD 0 6 1
## 2159 2120 DH LGA IAD 0 7 0
## 2160 2120 DH JFK IAD 0 7 0
## 2161 2120 DH EWR IAD 0 7 0
## 2162 2120 DH LGA IAD 0 1 1
## 2163 2120 DH JFK IAD 0 1 0
## 2164 2120 DH EWR IAD 0 1 1
## 2165 2120 DH LGA IAD 0 2 0
## 2166 2120 DH JFK IAD 0 2 0
## 2167 2120 DH EWR IAD 0 2 0
## 2168 2120 DH LGA IAD 0 3 1
## 2169 2120 DH JFK IAD 0 3 0
## 2170 2120 DH EWR IAD 0 3 0
## 2171 2120 DH LGA IAD 0 4 0
## 2172 2120 DH JFK IAD 0 4 0
## 2173 2120 DH EWR IAD 0 4 0
## 2174 2120 DH LGA IAD 0 5 1
## 2175 2120 DH JFK IAD 0 5 0
## 2176 2120 DH EWR IAD 0 5 1
## 2177 2120 DH LGA IAD 0 6 0
## 2178 2120 DH JFK IAD 0 6 0
## 2179 2120 DH EWR IAD 0 6 0
## 2180 2120 DH LGA IAD 0 7 1
## 2181 2120 DH JFK IAD 1 7 1
## 2182 2120 DH EWR IAD 0 7 1
## 2183 2120 DH LGA IAD 0 1 1
## 2184 2120 DH JFK IAD 0 1 0
## 2185 2120 DH EWR IAD 0 1 1
## 2186 2120 DH JFK IAD 1 2 1
## 2187 2120 DH EWR IAD 0 2 1
## 2188 2120 DH LGA IAD 0 3 1
## 2189 2120 DH JFK IAD 0 3 0
## 2190 2120 DH EWR IAD 0 3 0
## 2191 2120 DH LGA IAD 0 4 0
## 2192 2120 DH JFK IAD 0 4 0
## 2193 2120 DH EWR IAD 0 4 1
## 2194 2120 DH LGA IAD 0 5 0
## 2195 2120 DH JFK IAD 0 5 1
## 2196 2120 DH EWR IAD 0 5 0
## 2197 2120 DH LGA IAD 0 6 0
## 2198 2120 DH JFK IAD 0 6 0
## 2199 2120 DH EWR IAD 0 6 0
## 2200 2130 RU EWR DCA 0 7 0
## 2201 2130 RU EWR DCA 0 7 1
str(fd)
## 'data.frame': 2201 obs. of 7 variables:
## $ CRS_DEP_TIME : int 600 600 600 600 600 600 600 600 600 600 ...
## $ CARRIER : Factor w/ 8 levels "CO","DH","DL",..: 4 4 4 4 4 4 4 4 4 4 ...
## $ DEST : Factor w/ 3 levels "EWR","JFK","LGA": 2 2 2 2 2 2 2 2 2 2 ...
## $ ORIGIN : Factor w/ 3 levels "BWI","DCA","IAD": 2 2 2 2 2 2 2 2 2 2 ...
## $ Weather : Factor w/ 2 levels "0","1": 1 1 1 1 1 1 1 1 1 1 ...
## $ DAY_WEEK : Factor w/ 7 levels "1","2","3","4",..: 4 5 6 7 1 2 3 4 5 6 ...
## $ Flight.Status: Factor w/ 2 levels "0","1": 1 1 1 1 1 1 1 1 1 2 ...
cut(fd$CRS_DEP_TIME,breaks = c(600,1200,1300,1400,1500,1600,1700,1800,1900,2000,2100),labels = c("1","2","3","4","5","6","7","8","9","10"),right=F)->fd$bin_fd
fd
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather DAY_WEEK Flight.Status
## 1 600 MQ JFK DCA 0 4 0
## 2 600 MQ JFK DCA 0 5 0
## 3 600 MQ JFK DCA 0 6 0
## 4 600 MQ JFK DCA 0 7 0
## 5 600 MQ JFK DCA 0 1 0
## 6 600 MQ JFK DCA 0 2 0
## 7 600 MQ JFK DCA 0 3 0
## 8 600 MQ JFK DCA 0 4 0
## 9 600 MQ JFK DCA 0 5 0
## 10 600 MQ JFK DCA 0 6 1
## 11 600 MQ JFK DCA 0 7 0
## 12 600 MQ JFK DCA 0 1 0
## 13 600 MQ JFK DCA 0 2 0
## 14 600 MQ JFK DCA 0 3 0
## 15 600 MQ JFK DCA 0 4 0
## 16 600 MQ JFK DCA 0 5 0
## 17 600 MQ JFK DCA 0 6 0
## 18 600 MQ JFK DCA 0 7 1
## 19 600 MQ JFK DCA 0 1 0
## 20 600 MQ JFK DCA 0 2 0
## 21 600 MQ JFK DCA 0 3 0
## 22 600 MQ JFK DCA 0 4 0
## 23 600 MQ JFK DCA 0 5 0
## 24 600 MQ JFK DCA 0 6 0
## 25 600 MQ JFK DCA 0 4 0
## 26 600 MQ JFK DCA 0 6 0
## 27 630 DH EWR IAD 0 5 0
## 28 630 DH EWR IAD 0 6 0
## 29 630 DL LGA DCA 0 1 0
## 30 630 US LGA DCA 0 1 1
## 31 630 DH EWR IAD 0 1 0
## 32 630 DL LGA DCA 0 2 0
## 33 630 US LGA DCA 0 2 0
## 34 630 DH EWR IAD 0 2 0
## 35 630 DL LGA DCA 0 3 0
## 36 630 US LGA DCA 0 3 0
## 37 630 DH EWR IAD 0 3 0
## 38 630 DL LGA DCA 0 4 0
## 39 630 US LGA DCA 0 4 0
## 40 630 DH EWR IAD 0 4 0
## 41 630 DL LGA DCA 0 5 0
## 42 630 US LGA DCA 0 5 0
## 43 630 DH EWR IAD 0 5 0
## 44 630 DL LGA DCA 0 1 0
## 45 630 US LGA DCA 0 1 0
## 46 630 DH EWR IAD 0 1 0
## 47 630 DL LGA DCA 0 2 0
## 48 630 US LGA DCA 0 2 0
## 49 630 DH EWR IAD 0 2 0
## 50 630 DL LGA DCA 0 3 0
## 51 630 US LGA DCA 0 3 0
## 52 630 DH EWR IAD 0 3 0
## 53 630 DL LGA DCA 0 4 0
## 54 630 US LGA DCA 0 4 1
## 55 630 DH EWR IAD 0 4 0
## 56 630 DL LGA DCA 0 5 0
## 57 630 US LGA DCA 0 5 0
## 58 630 DH EWR IAD 0 5 1
## 59 630 US LGA DCA 0 1 0
## 60 630 DH EWR IAD 0 1 0
## 61 630 DL LGA DCA 0 2 0
## 62 630 US LGA DCA 0 2 0
## 63 630 DH EWR IAD 0 2 0
## 64 630 DL LGA DCA 0 3 0
## 65 630 US LGA DCA 0 3 0
## 66 630 DH EWR IAD 0 3 0
## 67 630 DL LGA DCA 0 4 0
## 68 630 US LGA DCA 0 4 0
## 69 630 DH EWR IAD 0 4 0
## 70 630 DL LGA DCA 0 5 0
## 71 630 US LGA DCA 0 5 0
## 72 630 DH EWR IAD 0 5 0
## 73 630 US LGA DCA 0 1 1
## 74 630 DH EWR IAD 0 1 0
## 75 630 US LGA DCA 0 2 0
## 76 630 US LGA DCA 0 3 0
## 77 630 DH EWR IAD 0 3 0
## 78 630 DL LGA DCA 0 4 0
## 79 630 US LGA DCA 0 4 0
## 80 630 DH EWR IAD 0 4 0
## 81 630 DL LGA DCA 0 5 0
## 82 630 US LGA DCA 0 5 0
## 83 630 DH EWR IAD 0 5 0
## 84 640 DH LGA IAD 0 5 0
## 85 640 DH LGA IAD 0 6 0
## 86 640 DH LGA IAD 0 7 0
## 87 640 DH LGA IAD 0 1 1
## 88 640 DH LGA IAD 0 2 0
## 89 640 DH LGA IAD 0 3 0
## 90 640 DH LGA IAD 0 4 0
## 91 640 DH LGA IAD 0 5 1
## 92 640 DH LGA IAD 0 1 1
## 93 640 DH LGA IAD 0 2 1
## 94 640 DH LGA IAD 0 3 0
## 95 640 DH LGA IAD 0 5 0
## 96 640 DH LGA IAD 0 1 1
## 97 640 DH LGA IAD 0 2 0
## 98 640 DH LGA IAD 0 3 1
## 99 640 DH LGA IAD 0 4 0
## 100 640 DH LGA IAD 0 5 0
## 101 640 DH LGA IAD 0 1 1
## 102 640 DH LGA IAD 1 2 1
## 103 640 DH LGA IAD 0 3 0
## 104 640 DH LGA IAD 0 4 1
## 105 640 DH LGA IAD 0 5 0
## 106 645 RU EWR DCA 0 2 0
## 107 645 RU EWR DCA 0 3 0
## 108 645 RU EWR DCA 0 4 1
## 109 645 RU EWR DCA 0 5 0
## 110 645 RU EWR DCA 0 6 0
## 111 645 RU EWR DCA 0 1 0
## 112 645 RU EWR DCA 0 2 0
## 113 645 RU EWR DCA 0 3 0
## 114 645 RU EWR DCA 0 4 0
## 115 645 RU EWR DCA 0 5 0
## 116 645 RU EWR DCA 0 6 0
## 117 645 RU EWR DCA 0 1 0
## 118 645 RU EWR DCA 0 2 0
## 119 645 RU EWR DCA 0 3 0
## 120 645 RU EWR DCA 0 4 0
## 121 645 RU EWR DCA 0 5 0
## 122 645 RU EWR DCA 0 6 0
## 123 645 RU EWR DCA 0 2 0
## 124 645 RU EWR DCA 0 4 0
## 125 645 RU EWR DCA 0 5 0
## 126 645 RU EWR DCA 0 6 0
## 127 700 RU EWR BWI 0 4 0
## 128 700 US LGA DCA 0 5 0
## 129 700 RU EWR BWI 0 5 0
## 130 700 RU EWR IAD 0 5 0
## 131 700 RU EWR DCA 0 5 0
## 132 700 US LGA DCA 0 6 0
## 133 700 RU EWR BWI 0 6 0
## 134 700 RU EWR IAD 0 6 0
## 135 700 RU EWR DCA 0 6 0
## 136 700 MQ LGA DCA 0 1 0
## 137 700 US LGA DCA 0 1 0
## 138 700 RU EWR BWI 0 1 1
## 139 700 RU EWR DCA 0 1 0
## 140 700 RU EWR IAD 0 1 0
## 141 700 MQ LGA DCA 0 2 0
## 142 700 US LGA DCA 0 2 0
## 143 700 RU EWR BWI 0 2 0
## 144 700 RU EWR IAD 0 2 0
## 145 700 MQ LGA DCA 0 3 0
## 146 700 US LGA DCA 0 3 0
## 147 700 RU EWR BWI 0 3 0
## 148 700 RU EWR IAD 0 3 1
## 149 700 MQ LGA DCA 0 4 0
## 150 700 US LGA DCA 0 4 0
## 151 700 RU EWR BWI 0 4 0
## 152 700 RU EWR IAD 0 4 0
## 153 700 US LGA DCA 0 5 0
## 154 700 RU EWR BWI 0 5 0
## 155 700 RU EWR IAD 0 5 1
## 156 700 US LGA DCA 0 6 0
## 157 700 RU EWR BWI 0 6 0
## 158 700 RU EWR IAD 0 6 0
## 159 700 MQ LGA DCA 0 1 1
## 160 700 US LGA DCA 0 1 1
## 161 700 RU EWR BWI 0 1 0
## 162 700 RU EWR IAD 0 1 0
## 163 700 MQ LGA DCA 0 2 0
## 164 700 US LGA DCA 0 2 0
## 165 700 RU EWR BWI 0 2 0
## 166 700 RU EWR IAD 0 2 0
## 167 700 MQ LGA DCA 0 3 1
## 168 700 US LGA DCA 0 3 0
## 169 700 RU EWR BWI 0 3 0
## 170 700 RU EWR IAD 0 3 0
## 171 700 RU EWR IAD 0 4 1
## 172 700 US LGA DCA 0 5 0
## 173 700 RU EWR BWI 0 5 0
## 174 700 RU EWR IAD 0 5 0
## 175 700 US LGA DCA 0 6 0
## 176 700 RU EWR BWI 0 6 0
## 177 700 RU EWR IAD 0 6 0
## 178 700 MQ LGA DCA 0 1 1
## 179 700 US LGA DCA 0 1 0
## 180 700 RU EWR BWI 0 1 0
## 181 700 RU EWR IAD 0 1 0
## 182 700 MQ LGA DCA 0 2 0
## 183 700 US LGA DCA 0 2 0
## 184 700 RU EWR BWI 0 2 0
## 185 700 RU EWR IAD 0 2 1
## 186 700 MQ LGA DCA 0 3 0
## 187 700 US LGA DCA 0 3 0
## 188 700 RU EWR BWI 0 3 0
## 189 700 RU EWR IAD 0 3 0
## 190 700 MQ LGA DCA 0 4 0
## 191 700 US LGA DCA 0 4 0
## 192 700 RU EWR BWI 0 4 0
## 193 700 RU EWR IAD 0 4 0
## 194 700 MQ LGA DCA 0 5 0
## 195 700 US LGA DCA 0 5 0
## 196 700 RU EWR BWI 0 5 0
## 197 700 RU EWR IAD 0 5 0
## 198 700 US LGA DCA 0 6 0
## 199 700 RU EWR BWI 0 6 1
## 200 700 RU EWR IAD 0 6 1
## 201 700 US LGA DCA 0 1 1
## 202 700 MQ LGA DCA 0 2 1
## 203 700 US LGA DCA 0 2 0
## 204 700 RU EWR BWI 0 2 1
## 205 700 RU EWR IAD 1 2 1
## 206 700 US LGA DCA 0 3 0
## 207 700 RU EWR IAD 0 3 0
## 208 700 MQ LGA DCA 0 4 1
## 209 700 US LGA DCA 0 4 1
## 210 700 RU EWR BWI 0 4 0
## 211 700 RU EWR IAD 0 4 0
## 212 700 MQ LGA DCA 0 5 0
## 213 700 US LGA DCA 0 5 0
## 214 700 RU EWR BWI 0 5 0
## 215 700 RU EWR IAD 0 5 1
## 216 700 US LGA DCA 0 6 0
## 217 700 RU EWR BWI 0 6 0
## 218 700 RU EWR IAD 0 6 0
## 219 730 MQ JFK DCA 0 7 0
## 220 730 DL LGA DCA 0 1 0
## 221 730 DL LGA DCA 0 2 0
## 222 730 DL LGA DCA 0 4 0
## 223 730 DL LGA DCA 0 5 1
## 224 730 DL LGA DCA 0 6 0
## 225 730 DL LGA DCA 0 1 0
## 226 730 DL LGA DCA 0 2 0
## 227 730 DL LGA DCA 0 3 0
## 228 730 DL LGA DCA 0 4 1
## 229 730 DL LGA DCA 0 5 0
## 230 730 DL LGA DCA 0 6 0
## 231 730 DL LGA DCA 0 1 0
## 232 730 DL LGA DCA 0 2 0
## 233 730 DL LGA DCA 0 3 0
## 234 730 DL LGA DCA 0 4 0
## 235 730 DL LGA DCA 0 5 0
## 236 730 DL LGA DCA 0 6 0
## 237 730 DL LGA DCA 1 1 1
## 238 730 DL LGA DCA 0 2 0
## 239 730 DL LGA DCA 0 3 0
## 240 730 DL LGA DCA 0 4 0
## 241 730 DL LGA DCA 0 5 0
## 242 730 DL LGA DCA 0 6 0
## 243 735 CO EWR DCA 0 2 0
## 244 735 CO EWR DCA 0 3 0
## 245 735 CO EWR DCA 0 4 0
## 246 735 CO EWR DCA 0 5 0
## 247 735 CO EWR DCA 0 1 0
## 248 735 CO EWR DCA 0 2 0
## 249 735 CO EWR DCA 0 3 0
## 250 735 CO EWR DCA 0 4 1
## 251 735 CO EWR DCA 0 5 0
## 252 735 CO EWR DCA 0 1 0
## 253 735 CO EWR DCA 0 2 0
## 254 735 CO EWR DCA 0 3 0
## 255 735 CO EWR DCA 0 4 0
## 256 735 CO EWR DCA 0 5 0
## 257 735 CO EWR DCA 1 1 1
## 258 735 CO EWR DCA 0 4 0
## 259 735 CO EWR DCA 0 5 0
## 260 759 CO EWR DCA 0 5 0
## 261 759 CO EWR DCA 0 1 0
## 262 800 MQ LGA DCA 0 1 0
## 263 800 US LGA DCA 0 1 0
## 264 800 MQ LGA DCA 0 2 0
## 265 800 US LGA DCA 0 2 0
## 266 800 MQ LGA DCA 0 3 0
## 267 800 US LGA DCA 0 3 0
## 268 800 MQ LGA DCA 0 4 0
## 269 800 US LGA DCA 0 4 0
## 270 800 MQ LGA DCA 0 5 1
## 271 800 US LGA DCA 0 5 0
## 272 800 MQ LGA DCA 0 1 0
## 273 800 US LGA DCA 0 1 0
## 274 800 MQ LGA DCA 0 2 0
## 275 800 US LGA DCA 0 2 0
## 276 800 MQ LGA DCA 0 3 0
## 277 800 US LGA DCA 0 3 0
## 278 800 MQ LGA DCA 0 4 1
## 279 800 US LGA DCA 0 4 0
## 280 800 MQ LGA DCA 0 5 1
## 281 800 US LGA DCA 0 5 0
## 282 800 MQ LGA DCA 0 1 1
## 283 800 US LGA DCA 0 1 0
## 284 800 MQ LGA DCA 0 2 0
## 285 800 US LGA DCA 0 2 0
## 286 800 MQ LGA DCA 0 3 0
## 287 800 US LGA DCA 0 3 0
## 288 800 MQ LGA DCA 0 4 0
## 289 800 US LGA DCA 0 4 0
## 290 800 MQ LGA DCA 0 5 0
## 291 800 US LGA DCA 0 5 0
## 292 800 MQ LGA DCA 1 1 1
## 293 800 US LGA DCA 0 1 0
## 294 800 MQ LGA DCA 0 2 0
## 295 800 US LGA DCA 0 2 0
## 296 800 MQ LGA DCA 0 3 1
## 297 800 US LGA DCA 0 3 1
## 298 800 MQ LGA DCA 0 4 0
## 299 800 US LGA DCA 0 4 0
## 300 800 MQ LGA DCA 1 5 1
## 301 800 US LGA DCA 0 5 0
## 302 830 DL LGA DCA 0 6 0
## 303 830 DL LGA DCA 0 7 0
## 304 830 DL LGA DCA 0 1 0
## 305 830 DL LGA DCA 0 2 0
## 306 830 DL LGA DCA 0 3 0
## 307 830 DL LGA DCA 0 4 0
## 308 830 DL LGA DCA 0 5 0
## 309 830 DL LGA DCA 0 6 0
## 310 830 DL LGA DCA 0 7 0
## 311 830 DL LGA DCA 0 1 0
## 312 830 DL LGA DCA 0 2 0
## 313 830 DL LGA DCA 0 3 0
## 314 830 DL LGA DCA 0 5 1
## 315 830 DL LGA DCA 0 6 0
## 316 830 DL LGA DCA 0 7 0
## 317 830 DL LGA DCA 0 1 0
## 318 830 DL LGA DCA 0 2 0
## 319 830 DL LGA DCA 0 3 0
## 320 830 DL LGA DCA 0 4 0
## 321 830 DL LGA DCA 0 5 0
## 322 830 DL LGA DCA 0 6 0
## 323 830 DL LGA DCA 0 7 0
## 324 830 DL LGA DCA 0 2 1
## 325 830 DL LGA DCA 0 4 1
## 326 830 DL LGA DCA 0 5 0
## 327 830 DL LGA DCA 0 6 1
## 328 840 DH JFK IAD 0 4 0
## 329 840 DH EWR IAD 0 4 0
## 330 840 DH JFK IAD 0 5 0
## 331 840 DH EWR IAD 0 5 0
## 332 840 DH JFK IAD 0 6 0
## 333 840 DH EWR IAD 0 6 1
## 334 840 DH JFK IAD 0 7 0
## 335 840 DH EWR IAD 0 7 0
## 336 840 DH JFK IAD 0 1 1
## 337 840 DH EWR IAD 0 1 0
## 338 840 DH JFK IAD 0 2 0
## 339 840 DH EWR IAD 0 2 0
## 340 840 DH JFK IAD 0 3 0
## 341 840 DH EWR IAD 0 3 0
## 342 840 DH JFK IAD 0 4 0
## 343 840 DH EWR IAD 0 4 0
## 344 840 DH JFK IAD 0 5 1
## 345 840 DH EWR IAD 0 5 0
## 346 840 DH JFK IAD 0 6 1
## 347 840 DH EWR IAD 0 6 0
## 348 840 DH JFK IAD 0 7 0
## 349 840 DH EWR IAD 0 7 0
## 350 840 DH JFK IAD 0 1 0
## 351 840 DH EWR IAD 0 1 0
## 352 840 DH JFK IAD 0 2 0
## 353 840 DH EWR IAD 0 2 0
## 354 840 DH JFK IAD 0 3 0
## 355 840 DH EWR IAD 0 3 0
## 356 840 DH JFK IAD 0 4 0
## 357 840 DH EWR IAD 0 4 0
## 358 840 DH JFK IAD 0 5 0
## 359 840 DH EWR IAD 0 5 0
## 360 840 DH JFK IAD 0 6 0
## 361 840 DH EWR IAD 0 6 0
## 362 840 DH JFK IAD 0 7 0
## 363 840 DH EWR IAD 0 7 0
## 364 840 DH JFK IAD 0 1 0
## 365 840 DH EWR IAD 0 1 0
## 366 840 DH JFK IAD 0 2 0
## 367 840 DH EWR IAD 0 2 0
## 368 840 DH JFK IAD 0 3 0
## 369 840 DH EWR IAD 0 3 0
## 370 840 DH JFK IAD 0 4 0
## 371 840 DH EWR IAD 0 4 0
## 372 840 DH JFK IAD 0 5 0
## 373 840 DH EWR IAD 0 5 0
## 374 840 DH JFK IAD 0 6 0
## 375 840 DH EWR IAD 0 6 0
## 376 840 DH JFK IAD 0 7 0
## 377 840 DH EWR IAD 0 7 0
## 378 840 DH JFK IAD 0 1 0
## 379 840 DH EWR IAD 0 1 0
## 380 840 DH JFK IAD 0 2 1
## 381 840 DH EWR IAD 0 2 1
## 382 840 DH JFK IAD 0 3 1
## 383 840 DH EWR IAD 0 3 0
## 384 840 DH JFK IAD 0 4 0
## 385 840 DH EWR IAD 0 4 1
## 386 840 DH JFK IAD 0 5 0
## 387 840 DH EWR IAD 0 5 0
## 388 840 DH JFK IAD 0 6 1
## 389 840 DH EWR IAD 0 6 0
## 390 845 RU EWR IAD 0 7 0
## 391 845 RU EWR IAD 0 7 0
## 392 845 RU EWR IAD 0 7 0
## 393 850 UA LGA IAD 0 4 0
## 394 850 UA LGA IAD 0 5 0
## 395 850 UA LGA IAD 0 6 0
## 396 850 UA LGA IAD 0 7 0
## 397 850 UA LGA IAD 0 1 0
## 398 850 UA LGA IAD 0 2 0
## 399 850 UA LGA IAD 0 3 0
## 400 850 UA LGA IAD 0 4 0
## 401 850 UA LGA IAD 0 5 1
## 402 850 UA LGA IAD 0 6 0
## 403 850 UA LGA IAD 0 7 0
## 404 850 UA LGA IAD 0 1 0
## 405 850 UA LGA IAD 0 2 0
## 406 850 UA LGA IAD 0 3 0
## 407 850 UA LGA IAD 0 4 1
## 408 850 UA LGA IAD 0 5 1
## 409 850 UA LGA IAD 0 6 0
## 410 850 UA LGA IAD 0 7 0
## 411 850 UA LGA IAD 0 1 0
## 412 850 UA LGA IAD 0 2 0
## 413 850 UA LGA IAD 0 3 0
## 414 850 UA LGA IAD 0 4 0
## 415 850 UA LGA IAD 0 5 0
## 416 850 UA LGA IAD 0 6 0
## 417 850 UA LGA IAD 0 7 0
## 418 850 UA LGA IAD 1 1 1
## 419 850 UA LGA IAD 1 2 1
## 420 850 UA LGA IAD 0 3 0
## 421 850 UA LGA IAD 0 4 0
## 422 850 UA LGA IAD 0 5 0
## 423 850 UA LGA IAD 0 6 0
## 424 900 MQ LGA DCA 0 4 0
## 425 900 US LGA DCA 0 4 0
## 426 900 MQ LGA DCA 0 5 0
## 427 900 US LGA DCA 0 5 0
## 428 900 RU EWR DCA 0 5 0
## 429 900 RU EWR IAD 0 5 0
## 430 900 MQ LGA DCA 0 6 0
## 431 900 US LGA DCA 0 6 0
## 432 900 US LGA DCA 0 7 0
## 433 900 RU EWR IAD 0 7 0
## 434 900 MQ LGA DCA 0 1 0
## 435 900 US LGA DCA 0 1 0
## 436 900 RU EWR DCA 0 1 1
## 437 900 RU EWR IAD 0 1 0
## 438 900 MQ LGA DCA 0 2 0
## 439 900 US LGA DCA 0 2 0
## 440 900 RU EWR DCA 0 2 0
## 441 900 MQ LGA DCA 0 3 0
## 442 900 US LGA DCA 0 3 0
## 443 900 RU EWR DCA 0 3 0
## 444 900 MQ LGA DCA 0 4 0
## 445 900 US LGA DCA 0 4 0
## 446 900 RU EWR DCA 0 4 0
## 447 900 MQ LGA DCA 0 5 0
## 448 900 RU EWR DCA 0 5 0
## 449 900 MQ LGA DCA 0 6 0
## 450 900 US LGA DCA 0 6 0
## 451 900 US LGA DCA 0 7 0
## 452 900 MQ LGA DCA 0 1 0
## 453 900 US LGA DCA 0 1 0
## 454 900 RU EWR DCA 0 1 0
## 455 900 MQ LGA DCA 0 2 0
## 456 900 US LGA DCA 0 2 0
## 457 900 RU EWR DCA 0 2 0
## 458 900 MQ LGA DCA 0 3 0
## 459 900 US LGA DCA 0 3 0
## 460 900 RU EWR DCA 0 3 0
## 461 900 US LGA DCA 0 4 1
## 462 900 RU EWR DCA 0 4 1
## 463 900 MQ LGA DCA 0 5 1
## 464 900 US LGA DCA 0 5 1
## 465 900 RU EWR DCA 0 5 0
## 466 900 MQ LGA DCA 0 6 0
## 467 900 US LGA DCA 0 6 0
## 468 900 US LGA DCA 0 7 0
## 469 900 MQ LGA DCA 0 1 0
## 470 900 US LGA DCA 0 1 0
## 471 900 RU EWR DCA 0 1 0
## 472 900 MQ LGA DCA 0 2 0
## 473 900 US LGA DCA 0 2 0
## 474 900 RU EWR DCA 0 2 0
## 475 900 MQ LGA DCA 0 3 0
## 476 900 US LGA DCA 0 3 0
## 477 900 RU EWR DCA 0 3 0
## 478 900 MQ LGA DCA 0 4 0
## 479 900 US LGA DCA 0 4 0
## 480 900 RU EWR DCA 0 4 0
## 481 900 MQ LGA DCA 0 5 0
## 482 900 US LGA DCA 0 5 0
## 483 900 RU EWR DCA 0 5 0
## 484 900 MQ LGA DCA 0 6 1
## 485 900 US LGA DCA 0 6 0
## 486 900 US LGA DCA 0 7 0
## 487 900 MQ LGA DCA 1 1 1
## 488 900 US LGA DCA 1 1 1
## 489 900 RU EWR DCA 0 1 0
## 490 900 US LGA DCA 0 2 0
## 491 900 US LGA DCA 0 3 1
## 492 900 RU EWR DCA 0 3 1
## 493 900 MQ LGA DCA 0 4 0
## 494 900 US LGA DCA 0 4 0
## 495 900 RU EWR DCA 0 4 0
## 496 900 MQ LGA DCA 0 5 0
## 497 900 US LGA DCA 0 5 0
## 498 900 RU EWR DCA 0 5 0
## 499 900 MQ LGA DCA 0 6 0
## 500 900 US LGA DCA 0 6 0
## 501 925 MQ JFK DCA 0 7 0
## 502 925 MQ JFK DCA 0 7 0
## 503 925 MQ JFK DCA 0 7 0
## 504 930 DL LGA DCA 0 4 0
## 505 930 DL LGA DCA 0 5 0
## 506 930 RU EWR DCA 0 6 0
## 507 930 RU EWR DCA 0 7 0
## 508 930 DL LGA DCA 0 1 0
## 509 930 DL LGA DCA 0 2 0
## 510 930 DL LGA DCA 0 3 0
## 511 930 DL LGA DCA 0 4 0
## 512 930 DL LGA DCA 0 5 0
## 513 930 RU EWR DCA 0 6 0
## 514 930 RU EWR DCA 0 7 0
## 515 930 DL LGA DCA 0 1 1
## 516 930 DL LGA DCA 0 2 0
## 517 930 DL LGA DCA 0 3 0
## 518 930 DL LGA DCA 0 4 0
## 519 930 DL LGA DCA 0 5 0
## 520 930 RU EWR DCA 0 6 0
## 521 930 RU EWR DCA 0 7 0
## 522 930 DL LGA DCA 0 2 0
## 523 930 DL LGA DCA 0 3 0
## 524 930 DL LGA DCA 0 4 0
## 525 930 DL LGA DCA 0 5 0
## 526 930 RU EWR DCA 0 6 0
## 527 930 RU EWR DCA 0 7 0
## 528 930 DL LGA DCA 0 1 0
## 529 930 DL LGA DCA 0 3 0
## 530 930 DL LGA DCA 0 5 0
## 531 930 RU EWR DCA 0 6 0
## 532 1000 US LGA DCA 0 7 0
## 533 1000 US LGA DCA 0 1 0
## 534 1000 US LGA DCA 0 2 0
## 535 1000 US LGA DCA 0 3 0
## 536 1000 US LGA DCA 0 4 0
## 537 1000 US LGA DCA 0 5 0
## 538 1000 US LGA DCA 0 7 0
## 539 1000 US LGA DCA 0 1 0
## 540 1000 US LGA DCA 0 2 0
## 541 1000 US LGA DCA 0 3 0
## 542 1000 US LGA DCA 0 5 0
## 543 1000 US LGA DCA 0 7 0
## 544 1000 US LGA DCA 0 1 0
## 545 1000 US LGA DCA 0 2 0
## 546 1000 US LGA DCA 0 3 0
## 547 1000 US LGA DCA 0 4 0
## 548 1000 US LGA DCA 0 5 0
## 549 1000 US LGA DCA 0 7 0
## 550 1000 US LGA DCA 0 1 0
## 551 1000 US LGA DCA 0 2 0
## 552 1000 US LGA DCA 0 3 0
## 553 1000 US LGA DCA 0 4 0
## 554 1000 US LGA DCA 0 5 0
## 555 1030 RU EWR BWI 0 4 0
## 556 1030 RU EWR BWI 0 5 0
## 557 1030 DL LGA DCA 0 6 0
## 558 1030 RU EWR BWI 0 6 0
## 559 1030 DL LGA DCA 0 7 0
## 560 1030 RU EWR BWI 0 7 1
## 561 1030 DL LGA DCA 0 1 0
## 562 1030 RU EWR BWI 0 1 1
## 563 1030 DL LGA DCA 0 2 0
## 564 1030 RU EWR BWI 0 2 0
## 565 1030 DL LGA DCA 0 3 0
## 566 1030 RU EWR BWI 0 3 1
## 567 1030 DL LGA DCA 0 4 0
## 568 1030 RU EWR BWI 0 4 0
## 569 1030 DL LGA DCA 0 5 0
## 570 1030 RU EWR BWI 0 5 1
## 571 1030 DL LGA DCA 0 6 0
## 572 1030 RU EWR BWI 0 6 0
## 573 1030 DL LGA DCA 0 7 0
## 574 1030 RU EWR BWI 0 7 0
## 575 1030 DL LGA DCA 0 1 0
## 576 1030 RU EWR BWI 0 1 0
## 577 1030 DL LGA DCA 0 2 0
## 578 1030 RU EWR BWI 0 2 0
## 579 1030 DL LGA DCA 0 3 0
## 580 1030 RU EWR BWI 0 3 0
## 581 1030 RU EWR BWI 0 4 1
## 582 1030 DL LGA DCA 0 5 1
## 583 1030 RU EWR BWI 0 5 1
## 584 1030 DL LGA DCA 0 6 0
## 585 1030 RU EWR BWI 0 6 0
## 586 1030 DL LGA DCA 0 7 0
## 587 1030 RU EWR BWI 1 7 1
## 588 1030 DL LGA DCA 0 1 0
## 589 1030 RU EWR BWI 0 1 0
## 590 1030 DL LGA DCA 0 2 0
## 591 1030 RU EWR BWI 0 2 0
## 592 1030 DL LGA DCA 0 3 0
## 593 1030 RU EWR BWI 0 3 0
## 594 1030 DL LGA DCA 0 4 0
## 595 1030 RU EWR BWI 0 4 0
## 596 1030 DL LGA DCA 0 5 0
## 597 1030 RU EWR BWI 0 5 0
## 598 1030 DL LGA DCA 0 6 0
## 599 1030 RU EWR BWI 0 6 0
## 600 1030 DL LGA DCA 0 7 0
## 601 1030 RU EWR BWI 0 7 1
## 602 1030 DL LGA DCA 0 1 0
## 603 1030 DL LGA DCA 0 2 0
## 604 1030 RU EWR BWI 0 3 0
## 605 1030 DL LGA DCA 0 4 0
## 606 1030 RU EWR BWI 0 4 0
## 607 1030 DL LGA DCA 0 5 0
## 608 1030 RU EWR BWI 0 5 0
## 609 1030 DL LGA DCA 0 6 0
## 610 1030 RU EWR BWI 0 6 0
## 611 1039 DH LGA IAD 0 4 0
## 612 1039 DH LGA IAD 0 5 1
## 613 1039 DH LGA IAD 0 6 0
## 614 1039 DH LGA IAD 0 7 0
## 615 1039 DH LGA IAD 0 1 0
## 616 1039 DH LGA IAD 0 2 0
## 617 1040 DH LGA IAD 0 3 0
## 618 1040 DH LGA IAD 0 4 0
## 619 1040 DH LGA IAD 0 5 0
## 620 1040 DH LGA IAD 0 1 0
## 621 1040 DH LGA IAD 0 2 0
## 622 1040 DH LGA IAD 0 3 0
## 623 1040 DH LGA IAD 0 1 0
## 624 1040 DH LGA IAD 0 2 0
## 625 1040 DH LGA IAD 0 3 0
## 626 1040 DH LGA IAD 0 4 0
## 627 1040 DH LGA IAD 0 5 0
## 628 1040 DH LGA IAD 0 1 1
## 629 1040 DH LGA IAD 0 2 0
## 630 1040 DH LGA IAD 0 3 0
## 631 1040 DH LGA IAD 0 5 0
## 632 1100 US LGA DCA 0 4 0
## 633 1100 MQ LGA DCA 0 5 0
## 634 1100 US LGA DCA 0 5 0
## 635 1100 US LGA DCA 0 6 0
## 636 1100 US LGA DCA 0 7 0
## 637 1100 MQ LGA DCA 0 1 0
## 638 1100 US LGA DCA 0 1 0
## 639 1100 MQ LGA DCA 0 2 0
## 640 1100 US LGA DCA 0 2 0
## 641 1100 MQ LGA DCA 0 3 0
## 642 1100 US LGA DCA 0 3 0
## 643 1100 MQ LGA DCA 0 4 0
## 644 1100 US LGA DCA 0 4 0
## 645 1100 MQ LGA DCA 0 5 1
## 646 1100 US LGA DCA 0 5 0
## 647 1100 US LGA DCA 0 6 0
## 648 1100 US LGA DCA 0 7 0
## 649 1100 MQ LGA DCA 0 1 0
## 650 1100 US LGA DCA 0 1 1
## 651 1100 MQ LGA DCA 0 2 0
## 652 1100 US LGA DCA 0 2 0
## 653 1100 MQ LGA DCA 0 3 1
## 654 1100 US LGA DCA 0 3 0
## 655 1100 MQ LGA DCA 0 4 0
## 656 1100 US LGA DCA 0 4 0
## 657 1100 MQ LGA DCA 0 5 1
## 658 1100 US LGA DCA 0 5 0
## 659 1100 US LGA DCA 0 6 0
## 660 1100 US LGA DCA 0 7 0
## 661 1100 MQ LGA DCA 0 1 0
## 662 1100 US LGA DCA 0 1 0
## 663 1100 MQ LGA DCA 0 2 0
## 664 1100 US LGA DCA 0 2 0
## 665 1100 MQ LGA DCA 0 3 0
## 666 1100 US LGA DCA 0 3 0
## 667 1100 MQ LGA DCA 0 4 0
## 668 1100 US LGA DCA 0 4 0
## 669 1100 MQ LGA DCA 0 5 0
## 670 1100 US LGA DCA 0 5 0
## 671 1100 US LGA DCA 0 6 0
## 672 1100 US LGA DCA 0 7 0
## 673 1100 US LGA DCA 0 1 1
## 674 1100 US LGA DCA 0 2 0
## 675 1100 US LGA DCA 0 3 0
## 676 1100 US LGA DCA 0 4 0
## 677 1100 MQ LGA DCA 0 5 0
## 678 1100 US LGA DCA 0 5 0
## 679 1100 US LGA DCA 0 6 0
## 680 1130 DL LGA DCA 0 1 0
## 681 1130 DL LGA DCA 0 2 0
## 682 1130 DL LGA DCA 0 3 0
## 683 1130 DL LGA DCA 0 4 0
## 684 1130 DL LGA DCA 0 5 0
## 685 1130 DL LGA DCA 0 7 0
## 686 1130 DL LGA DCA 0 1 0
## 687 1130 DL LGA DCA 0 2 0
## 688 1130 DL LGA DCA 0 3 1
## 689 1130 DL LGA DCA 0 4 0
## 690 1130 DL LGA DCA 0 5 0
## 691 1130 DL LGA DCA 0 2 0
## 692 1130 DL LGA DCA 0 3 0
## 693 1130 DL LGA DCA 0 4 0
## 694 1130 DL LGA DCA 0 5 0
## 695 1130 DL LGA DCA 0 7 0
## 696 1130 DL LGA DCA 0 1 0
## 697 1130 DL LGA DCA 0 3 0
## 698 1130 DL LGA DCA 0 4 0
## 699 1130 DL LGA DCA 0 5 0
## 700 1200 US LGA DCA 0 7 0
## 701 1200 US LGA DCA 0 1 0
## 702 1200 US LGA DCA 0 2 0
## 703 1200 US LGA DCA 0 3 0
## 704 1200 US LGA DCA 0 4 0
## 705 1200 US LGA DCA 0 5 0
## 706 1200 US LGA DCA 0 7 0
## 707 1200 US LGA DCA 0 1 0
## 708 1200 US LGA DCA 0 2 0
## 709 1200 US LGA DCA 0 3 0
## 710 1200 US LGA DCA 0 4 0
## 711 1200 US LGA DCA 0 5 0
## 712 1200 US LGA DCA 0 7 0
## 713 1200 US LGA DCA 0 1 0
## 714 1200 US LGA DCA 0 2 0
## 715 1200 US LGA DCA 0 3 0
## 716 1200 US LGA DCA 0 4 0
## 717 1200 US LGA DCA 0 5 0
## 718 1200 US LGA DCA 0 7 0
## 719 1200 US LGA DCA 0 2 0
## 720 1200 US LGA DCA 0 4 0
## 721 1200 US LGA DCA 0 5 0
## 722 1230 DL LGA DCA 0 4 0
## 723 1230 DL LGA DCA 0 5 0
## 724 1230 DL LGA DCA 0 6 0
## 725 1230 DL LGA DCA 0 7 0
## 726 1230 DL LGA DCA 0 1 0
## 727 1230 DL LGA DCA 0 2 0
## 728 1230 DL LGA DCA 0 3 0
## 729 1230 DL LGA DCA 0 4 0
## 730 1230 DL LGA DCA 0 5 0
## 731 1230 DL LGA DCA 0 6 0
## 732 1230 DL LGA DCA 0 7 0
## 733 1230 DL LGA DCA 0 1 0
## 734 1230 DL LGA DCA 0 2 0
## 735 1230 DL LGA DCA 0 3 0
## 736 1230 DL LGA DCA 0 5 0
## 737 1230 DL LGA DCA 0 7 1
## 738 1230 DL LGA DCA 0 1 0
## 739 1230 DL LGA DCA 0 2 0
## 740 1230 DL LGA DCA 0 3 0
## 741 1230 DL LGA DCA 0 4 0
## 742 1230 DL LGA DCA 0 5 0
## 743 1230 DL LGA DCA 0 6 0
## 744 1230 DL LGA DCA 0 7 0
## 745 1230 DL LGA DCA 0 1 0
## 746 1230 DL LGA DCA 0 2 0
## 747 1230 DL LGA DCA 0 4 0
## 748 1230 DL LGA DCA 0 5 0
## 749 1230 DL LGA DCA 0 6 0
## 750 1240 DH JFK IAD 0 4 0
## 751 1240 DH JFK IAD 0 5 0
## 752 1240 DH JFK IAD 0 6 0
## 753 1240 DH JFK IAD 0 7 0
## 754 1240 DH JFK IAD 0 1 1
## 755 1240 DH JFK IAD 0 2 0
## 756 1240 DH JFK IAD 0 3 0
## 757 1240 DH JFK IAD 0 4 0
## 758 1240 DH JFK IAD 0 5 0
## 759 1240 DH JFK IAD 0 6 1
## 760 1240 DH JFK IAD 0 7 0
## 761 1240 DH JFK IAD 0 1 0
## 762 1240 DH JFK IAD 0 2 0
## 763 1240 DH JFK IAD 0 3 0
## 764 1240 DH JFK IAD 0 4 0
## 765 1240 DH JFK IAD 0 5 0
## 766 1240 DH JFK IAD 0 6 0
## 767 1240 DH JFK IAD 0 7 0
## 768 1240 DH JFK IAD 0 1 0
## 769 1240 DH JFK IAD 0 2 1
## 770 1240 DH JFK IAD 0 3 0
## 771 1240 DH JFK IAD 0 4 0
## 772 1240 DH JFK IAD 0 5 0
## 773 1240 DH JFK IAD 0 6 0
## 774 1240 DH JFK IAD 0 7 1
## 775 1240 DH JFK IAD 0 1 0
## 776 1240 DH JFK IAD 0 2 1
## 777 1240 DH JFK IAD 0 3 1
## 778 1240 DH JFK IAD 0 4 0
## 779 1240 DH JFK IAD 0 5 0
## 780 1240 DH JFK IAD 0 6 0
## 781 1245 DH LGA IAD 0 4 0
## 782 1245 DH EWR IAD 0 4 0
## 783 1245 DH LGA IAD 0 5 0
## 784 1245 DH EWR IAD 0 5 1
## 785 1245 DH LGA IAD 0 6 0
## 786 1245 DH EWR IAD 0 6 1
## 787 1245 DH LGA IAD 0 7 0
## 788 1245 DH EWR IAD 0 7 1
## 789 1245 DH LGA IAD 0 1 1
## 790 1245 DH EWR IAD 0 1 1
## 791 1245 DH LGA IAD 0 2 0
## 792 1245 DH EWR IAD 0 2 0
## 793 1245 DH LGA IAD 0 3 0
## 794 1245 DH EWR IAD 0 3 1
## 795 1245 DH LGA IAD 0 4 0
## 796 1245 DH EWR IAD 0 4 0
## 797 1245 DH LGA IAD 0 5 0
## 798 1245 DH EWR IAD 0 5 0
## 799 1245 DH LGA IAD 0 6 0
## 800 1245 DH EWR IAD 0 6 0
## 801 1245 DH LGA IAD 0 7 0
## 802 1245 DH EWR IAD 0 7 0
## 803 1245 DH LGA IAD 0 1 0
## 804 1245 DH EWR IAD 0 1 1
## 805 1245 DH LGA IAD 0 2 0
## 806 1245 DH EWR IAD 0 2 0
## 807 1245 DH LGA IAD 0 3 0
## 808 1245 DH EWR IAD 0 3 0
## 809 1245 DH LGA IAD 0 4 0
## 810 1245 DH EWR IAD 0 4 0
## 811 1245 DH EWR IAD 0 5 0
## 812 1245 DH LGA IAD 0 6 0
## 813 1245 DH EWR IAD 0 6 0
## 814 1245 DH LGA IAD 0 7 0
## 815 1245 DH EWR IAD 0 7 1
## 816 1245 DH LGA IAD 0 1 0
## 817 1245 DH EWR IAD 0 1 0
## 818 1245 DH LGA IAD 0 2 0
## 819 1245 DH EWR IAD 0 2 0
## 820 1245 DH LGA IAD 0 3 0
## 821 1245 DH EWR IAD 0 3 0
## 822 1245 DH LGA IAD 0 4 1
## 823 1245 DH EWR IAD 0 4 0
## 824 1245 DH LGA IAD 0 5 1
## 825 1245 DH EWR IAD 0 5 0
## 826 1245 DH LGA IAD 0 6 0
## 827 1245 DH EWR IAD 0 6 0
## 828 1245 DH LGA IAD 0 7 0
## 829 1245 DH EWR IAD 0 7 0
## 830 1245 DH LGA IAD 0 1 0
## 831 1245 DH EWR IAD 0 1 1
## 832 1245 DH LGA IAD 1 2 1
## 833 1245 DH EWR IAD 0 2 1
## 834 1245 DH LGA IAD 0 3 0
## 835 1245 DH EWR IAD 0 3 1
## 836 1245 DH LGA IAD 0 4 1
## 837 1245 DH EWR IAD 0 4 0
## 838 1245 DH LGA IAD 0 5 0
## 839 1245 DH EWR IAD 0 5 1
## 840 1245 DH LGA IAD 0 6 0
## 841 1245 DH EWR IAD 0 6 0
## 842 1300 MQ LGA DCA 0 4 0
## 843 1300 US LGA DCA 0 4 0
## 844 1300 CO EWR DCA 0 4 0
## 845 1300 RU EWR IAD 0 4 0
## 846 1300 MQ LGA DCA 0 5 0
## 847 1300 US LGA DCA 0 5 0
## 848 1300 CO EWR DCA 0 5 0
## 849 1300 RU EWR IAD 0 5 0
## 850 1300 MQ LGA DCA 0 6 0
## 851 1300 US LGA DCA 0 6 0
## 852 1300 CO EWR DCA 0 6 0
## 853 1300 MQ LGA DCA 0 7 0
## 854 1300 US LGA DCA 0 7 0
## 855 1300 CO EWR DCA 0 7 0
## 856 1300 MQ LGA DCA 0 1 0
## 857 1300 US LGA DCA 0 1 0
## 858 1300 CO EWR DCA 0 1 1
## 859 1300 RU EWR IAD 0 1 1
## 860 1300 MQ LGA DCA 0 2 0
## 861 1300 US LGA DCA 0 2 0
## 862 1300 CO EWR DCA 0 2 0
## 863 1300 RU EWR IAD 0 2 0
## 864 1300 MQ LGA DCA 0 3 0
## 865 1300 US LGA DCA 0 3 0
## 866 1300 CO EWR DCA 0 3 0
## 867 1300 RU EWR IAD 0 3 0
## 868 1300 MQ LGA DCA 0 4 0
## 869 1300 US LGA DCA 0 4 0
## 870 1300 CO EWR DCA 0 4 0
## 871 1300 RU EWR IAD 0 4 0
## 872 1300 MQ LGA DCA 0 5 0
## 873 1300 US LGA DCA 0 5 0
## 874 1300 CO EWR DCA 0 5 0
## 875 1300 RU EWR IAD 0 5 0
## 876 1300 MQ LGA DCA 0 6 0
## 877 1300 US LGA DCA 0 6 0
## 878 1300 CO EWR DCA 0 6 0
## 879 1300 MQ LGA DCA 0 7 1
## 880 1300 US LGA DCA 0 7 0
## 881 1300 CO EWR DCA 0 7 0
## 882 1300 MQ LGA DCA 0 1 0
## 883 1300 US LGA DCA 0 1 0
## 884 1300 CO EWR DCA 0 1 0
## 885 1300 RU EWR IAD 0 1 0
## 886 1300 MQ LGA DCA 0 2 0
## 887 1300 US LGA DCA 0 2 0
## 888 1300 CO EWR DCA 0 2 0
## 889 1300 RU EWR IAD 0 2 0
## 890 1300 MQ LGA DCA 0 3 0
## 891 1300 US LGA DCA 0 3 0
## 892 1300 CO EWR DCA 0 3 0
## 893 1300 RU EWR IAD 0 3 0
## 894 1300 MQ LGA DCA 0 4 1
## 895 1300 CO EWR DCA 0 4 0
## 896 1300 RU EWR IAD 0 4 1
## 897 1300 MQ LGA DCA 0 5 1
## 898 1300 US LGA DCA 0 5 0
## 899 1300 CO EWR DCA 0 5 1
## 900 1300 RU EWR IAD 0 5 1
## 901 1300 MQ LGA DCA 0 6 0
## 902 1300 US LGA DCA 0 6 0
## 903 1300 CO EWR DCA 0 6 0
## 904 1300 MQ LGA DCA 0 7 1
## 905 1300 US LGA DCA 0 7 1
## 906 1300 CO EWR DCA 0 7 0
## 907 1300 MQ LGA DCA 0 1 0
## 908 1300 US LGA DCA 0 1 0
## 909 1300 CO EWR DCA 0 1 0
## 910 1300 RU EWR IAD 0 1 0
## 911 1300 MQ LGA DCA 0 2 0
## 912 1300 US LGA DCA 0 2 0
## 913 1300 CO EWR DCA 0 2 0
## 914 1300 RU EWR IAD 0 2 0
## 915 1300 MQ LGA DCA 0 3 0
## 916 1300 US LGA DCA 0 3 0
## 917 1300 CO EWR DCA 0 3 0
## 918 1300 RU EWR IAD 0 3 0
## 919 1300 MQ LGA DCA 0 4 0
## 920 1300 US LGA DCA 0 4 0
## 921 1300 CO EWR DCA 0 4 0
## 922 1300 RU EWR IAD 0 4 0
## 923 1300 MQ LGA DCA 0 5 1
## 924 1300 US LGA DCA 0 5 1
## 925 1300 CO EWR DCA 0 5 0
## 926 1300 RU EWR IAD 0 5 0
## 927 1300 MQ LGA DCA 0 6 0
## 928 1300 US LGA DCA 0 6 0
## 929 1300 CO EWR DCA 0 6 0
## 930 1300 MQ LGA DCA 0 7 0
## 931 1300 US LGA DCA 0 7 0
## 932 1300 CO EWR DCA 0 7 0
## 933 1300 MQ LGA DCA 1 1 1
## 934 1300 CO EWR DCA 0 1 0
## 935 1300 RU EWR IAD 0 1 0
## 936 1300 US LGA DCA 0 2 0
## 937 1300 CO EWR DCA 0 2 1
## 938 1300 US LGA DCA 0 3 0
## 939 1300 CO EWR DCA 0 3 0
## 940 1300 MQ LGA DCA 0 4 0
## 941 1300 US LGA DCA 0 4 0
## 942 1300 CO EWR DCA 0 4 0
## 943 1300 RU EWR IAD 0 4 0
## 944 1300 MQ LGA DCA 0 5 0
## 945 1300 US LGA DCA 0 5 0
## 946 1300 CO EWR DCA 0 5 0
## 947 1300 RU EWR IAD 0 5 0
## 948 1300 MQ LGA DCA 0 6 0
## 949 1300 US LGA DCA 0 6 0
## 950 1300 CO EWR DCA 0 6 0
## 951 1315 RU EWR BWI 0 7 1
## 952 1315 RU EWR BWI 0 7 0
## 953 1315 RU EWR BWI 0 7 1
## 954 1315 RU EWR BWI 0 7 0
## 955 1330 DL LGA DCA 0 1 0
## 956 1330 DL LGA DCA 0 2 0
## 957 1330 DL LGA DCA 0 3 0
## 958 1330 DL LGA DCA 0 4 0
## 959 1330 DL LGA DCA 0 5 0
## 960 1330 DL LGA DCA 0 7 0
## 961 1330 DL LGA DCA 0 1 0
## 962 1330 DL LGA DCA 0 2 0
## 963 1330 DL LGA DCA 0 3 0
## 964 1330 DL LGA DCA 0 4 0
## 965 1330 DL LGA DCA 0 5 0
## 966 1330 DL LGA DCA 0 2 0
## 967 1330 DL LGA DCA 0 3 0
## 968 1330 DL LGA DCA 0 4 0
## 969 1330 DL LGA DCA 0 7 0
## 970 1330 DL LGA DCA 0 1 0
## 971 1330 DL LGA DCA 0 3 0
## 972 1330 DL LGA DCA 0 4 0
## 973 1330 DL LGA DCA 0 5 0
## 974 1359 RU EWR DCA 0 2 0
## 975 1359 RU EWR DCA 0 3 0
## 976 1359 RU EWR DCA 0 4 0
## 977 1359 RU EWR DCA 0 5 0
## 978 1359 RU EWR DCA 0 6 0
## 979 1359 RU EWR DCA 0 7 0
## 980 1359 RU EWR DCA 0 1 0
## 981 1359 RU EWR DCA 0 2 0
## 982 1359 RU EWR DCA 0 3 0
## 983 1359 RU EWR DCA 0 4 0
## 984 1359 RU EWR DCA 0 5 1
## 985 1359 RU EWR DCA 0 6 0
## 986 1359 RU EWR DCA 0 7 1
## 987 1359 RU EWR DCA 0 1 0
## 988 1359 RU EWR DCA 0 2 0
## 989 1359 RU EWR DCA 0 3 0
## 990 1359 RU EWR DCA 0 4 0
## 991 1359 RU EWR DCA 0 5 0
## 992 1359 RU EWR DCA 0 6 0
## 993 1359 RU EWR DCA 0 7 0
## 994 1359 RU EWR DCA 0 1 0
## 995 1359 RU EWR DCA 0 3 0
## 996 1359 RU EWR DCA 0 4 1
## 997 1359 RU EWR DCA 0 5 1
## 998 1359 RU EWR DCA 0 6 0
## 999 1400 MQ LGA DCA 0 4 0
## 1000 1400 RU EWR DCA 0 4 0
## 1001 1400 MQ LGA DCA 0 5 0
## 1002 1400 RU EWR DCA 0 5 0
## 1003 1400 RU EWR DCA 0 6 0
## 1004 1400 US LGA DCA 0 7 0
## 1005 1400 RU EWR DCA 0 7 1
## 1006 1400 US LGA DCA 0 1 0
## 1007 1400 RU EWR DCA 0 1 1
## 1008 1400 MQ LGA DCA 0 2 0
## 1009 1400 US LGA DCA 0 2 0
## 1010 1400 MQ LGA DCA 0 3 0
## 1011 1400 US LGA DCA 0 3 0
## 1012 1400 MQ LGA DCA 0 4 0
## 1013 1400 US LGA DCA 0 4 0
## 1014 1400 MQ LGA DCA 0 5 0
## 1015 1400 US LGA DCA 0 5 0
## 1016 1400 US LGA DCA 0 7 0
## 1017 1400 US LGA DCA 0 1 0
## 1018 1400 MQ LGA DCA 0 2 0
## 1019 1400 US LGA DCA 0 2 0
## 1020 1400 US LGA DCA 0 3 0
## 1021 1400 MQ LGA DCA 0 4 0
## 1022 1400 US LGA DCA 0 4 0
## 1023 1400 MQ LGA DCA 0 5 1
## 1024 1400 US LGA DCA 0 5 0
## 1025 1400 US LGA DCA 0 7 0
## 1026 1400 MQ LGA DCA 0 1 0
## 1027 1400 US LGA DCA 0 1 0
## 1028 1400 MQ LGA DCA 0 2 0
## 1029 1400 US LGA DCA 0 2 0
## 1030 1400 MQ LGA DCA 0 3 0
## 1031 1400 US LGA DCA 0 3 0
## 1032 1400 MQ LGA DCA 0 4 0
## 1033 1400 US LGA DCA 0 4 0
## 1034 1400 MQ LGA DCA 0 5 0
## 1035 1400 US LGA DCA 0 5 0
## 1036 1400 US LGA DCA 0 7 0
## 1037 1400 US LGA DCA 0 1 0
## 1038 1400 MQ LGA DCA 1 2 1
## 1039 1400 US LGA DCA 0 2 0
## 1040 1400 MQ LGA DCA 0 3 1
## 1041 1400 MQ LGA DCA 0 4 1
## 1042 1400 US LGA DCA 0 4 0
## 1043 1400 MQ LGA DCA 0 5 0
## 1044 1400 US LGA DCA 0 5 0
## 1045 1430 DL LGA DCA 0 4 0
## 1046 1430 DL LGA DCA 0 5 0
## 1047 1430 DH EWR IAD 0 5 1
## 1048 1430 DL LGA DCA 0 6 0
## 1049 1430 DL LGA DCA 0 7 0
## 1050 1430 DH EWR IAD 0 7 1
## 1051 1430 DL LGA DCA 0 1 0
## 1052 1430 DH EWR IAD 0 1 1
## 1053 1430 DL LGA DCA 0 2 0
## 1054 1430 DH EWR IAD 0 2 0
## 1055 1430 DL LGA DCA 0 3 0
## 1056 1430 DH EWR IAD 0 3 0
## 1057 1430 DL LGA DCA 0 4 0
## 1058 1430 DH EWR IAD 0 4 0
## 1059 1430 DL LGA DCA 0 5 0
## 1060 1430 DH EWR IAD 0 5 0
## 1061 1430 DL LGA DCA 0 6 0
## 1062 1430 DL LGA DCA 0 7 0
## 1063 1430 DH EWR IAD 0 7 1
## 1064 1430 DL LGA DCA 0 1 0
## 1065 1430 DH EWR IAD 0 1 0
## 1066 1430 DL LGA DCA 0 2 0
## 1067 1430 DH EWR IAD 0 2 1
## 1068 1430 DL LGA DCA 0 3 0
## 1069 1430 DH EWR IAD 0 3 1
## 1070 1430 DL LGA DCA 0 4 0
## 1071 1430 DL LGA DCA 0 5 0
## 1072 1430 DL LGA DCA 0 6 0
## 1073 1430 DL LGA DCA 0 7 0
## 1074 1430 DL LGA DCA 0 1 0
## 1075 1430 DH EWR IAD 0 1 0
## 1076 1430 DL LGA DCA 0 2 0
## 1077 1430 DH EWR IAD 0 2 0
## 1078 1430 DL LGA DCA 0 3 0
## 1079 1430 DH EWR IAD 0 3 0
## 1080 1430 DL LGA DCA 0 4 1
## 1081 1430 DH EWR IAD 0 4 0
## 1082 1430 DL LGA DCA 0 5 0
## 1083 1430 DH EWR IAD 0 5 0
## 1084 1430 DL LGA DCA 0 6 0
## 1085 1430 DL LGA DCA 0 7 0
## 1086 1430 DH EWR IAD 0 7 1
## 1087 1430 DL LGA DCA 0 1 1
## 1088 1430 DH EWR IAD 1 1 1
## 1089 1430 DL LGA DCA 0 2 0
## 1090 1430 DH EWR IAD 1 2 1
## 1091 1430 DH EWR IAD 0 3 0
## 1092 1430 DL LGA DCA 0 4 0
## 1093 1430 DH EWR IAD 0 4 0
## 1094 1430 DL LGA DCA 0 5 0
## 1095 1430 DH EWR IAD 0 5 0
## 1096 1430 DL LGA DCA 0 6 0
## 1097 1455 OH JFK BWI 0 4 0
## 1098 1455 DL JFK DCA 0 4 0
## 1099 1455 RU EWR BWI 0 4 0
## 1100 1455 OH JFK BWI 0 5 0
## 1101 1455 DH LGA IAD 0 5 1
## 1102 1455 DH JFK IAD 0 5 0
## 1103 1455 DL JFK DCA 0 5 0
## 1104 1455 RU EWR BWI 0 5 0
## 1105 1455 DH JFK IAD 0 6 0
## 1106 1455 DL JFK DCA 0 6 1
## 1107 1455 RU EWR BWI 0 6 0
## 1108 1455 OH JFK BWI 0 7 1
## 1109 1455 DH LGA IAD 0 7 1
## 1110 1455 DH JFK IAD 0 7 0
## 1111 1455 DL JFK DCA 0 7 0
## 1112 1455 RU EWR BWI 0 7 1
## 1113 1455 OH JFK BWI 0 1 1
## 1114 1455 DH LGA IAD 0 1 1
## 1115 1455 DL JFK DCA 0 1 0
## 1116 1455 RU EWR BWI 0 1 1
## 1117 1455 OH JFK BWI 0 2 0
## 1118 1455 DH LGA IAD 0 2 0
## 1119 1455 DH JFK IAD 0 2 0
## 1120 1455 DL JFK DCA 0 2 0
## 1121 1455 RU EWR BWI 0 2 0
## 1122 1455 OH JFK BWI 0 3 0
## 1123 1455 DH LGA IAD 0 3 0
## 1124 1455 DH JFK IAD 0 3 0
## 1125 1455 DL JFK DCA 0 3 0
## 1126 1455 RU EWR BWI 0 3 0
## 1127 1455 OH JFK BWI 0 4 0
## 1128 1455 DH LGA IAD 0 4 1
## 1129 1455 DH JFK IAD 0 4 0
## 1130 1455 DL JFK DCA 0 4 1
## 1131 1455 RU EWR BWI 0 4 0
## 1132 1455 OH JFK BWI 0 5 0
## 1133 1455 DH LGA IAD 0 5 1
## 1134 1455 DH JFK IAD 0 5 0
## 1135 1455 DL JFK DCA 0 5 0
## 1136 1455 RU EWR BWI 0 5 0
## 1137 1455 OH JFK BWI 0 6 0
## 1138 1455 DL JFK DCA 0 6 1
## 1139 1455 RU EWR BWI 0 6 0
## 1140 1455 OH JFK BWI 0 7 0
## 1141 1455 DH LGA IAD 0 7 0
## 1142 1455 DH JFK IAD 0 7 1
## 1143 1455 DL JFK DCA 0 7 1
## 1144 1455 RU EWR BWI 0 7 0
## 1145 1455 OH JFK BWI 0 1 0
## 1146 1455 DH LGA IAD 0 1 0
## 1147 1455 DH JFK IAD 0 1 1
## 1148 1455 DL JFK DCA 0 1 0
## 1149 1455 RU EWR BWI 0 1 1
## 1150 1455 OH JFK BWI 0 2 0
## 1151 1455 DH JFK IAD 0 2 0
## 1152 1455 DL JFK DCA 0 2 0
## 1153 1455 RU EWR BWI 0 2 1
## 1154 1455 OH JFK BWI 0 3 0
## 1155 1455 DH JFK IAD 0 3 0
## 1156 1455 DL JFK DCA 0 3 0
## 1157 1455 RU EWR BWI 0 3 0
## 1158 1455 OH JFK BWI 0 4 0
## 1159 1455 DH LGA IAD 0 4 1
## 1160 1455 DH JFK IAD 0 4 0
## 1161 1455 DL JFK DCA 0 4 0
## 1162 1455 RU EWR BWI 0 4 0
## 1163 1455 OH JFK BWI 0 5 0
## 1164 1455 DH LGA IAD 0 5 1
## 1165 1455 DH JFK IAD 0 5 0
## 1166 1455 DL JFK DCA 0 5 1
## 1167 1455 RU EWR BWI 0 5 1
## 1168 1455 OH JFK BWI 0 6 0
## 1169 1455 DL JFK DCA 0 6 1
## 1170 1455 RU EWR BWI 0 6 0
## 1171 1455 OH JFK BWI 0 7 0
## 1172 1455 DH LGA IAD 0 7 1
## 1173 1455 DH JFK IAD 0 7 1
## 1174 1455 DL JFK DCA 0 7 1
## 1175 1455 RU EWR BWI 0 7 1
## 1176 1455 OH JFK BWI 0 1 0
## 1177 1455 DH LGA IAD 0 1 0
## 1178 1455 DH JFK IAD 0 1 0
## 1179 1455 DL JFK DCA 0 1 1
## 1180 1455 RU EWR BWI 0 1 0
## 1181 1455 OH JFK BWI 0 2 0
## 1182 1455 DH LGA IAD 0 2 0
## 1183 1455 DH JFK IAD 0 2 0
## 1184 1455 DL JFK DCA 0 2 1
## 1185 1455 RU EWR BWI 0 2 0
## 1186 1455 OH JFK BWI 0 3 0
## 1187 1455 DH LGA IAD 0 3 0
## 1188 1455 DH JFK IAD 0 3 0
## 1189 1455 DL JFK DCA 0 3 0
## 1190 1455 RU EWR BWI 0 3 0
## 1191 1455 OH JFK BWI 0 4 1
## 1192 1455 DH LGA IAD 0 4 1
## 1193 1455 DH JFK IAD 0 4 0
## 1194 1455 DL JFK DCA 0 4 0
## 1195 1455 RU EWR BWI 0 4 0
## 1196 1455 OH JFK BWI 0 5 1
## 1197 1455 DH JFK IAD 0 5 0
## 1198 1455 DL JFK DCA 0 5 0
## 1199 1455 RU EWR BWI 0 5 1
## 1200 1455 OH JFK BWI 0 6 0
## 1201 1455 DL JFK DCA 0 6 1
## 1202 1455 RU EWR BWI 0 6 0
## 1203 1455 OH JFK BWI 0 7 0
## 1204 1455 DH LGA IAD 0 7 0
## 1205 1455 DH JFK IAD 0 7 0
## 1206 1455 DL JFK DCA 0 7 1
## 1207 1455 RU EWR BWI 0 7 0
## 1208 1455 OH JFK BWI 0 1 0
## 1209 1455 DH LGA IAD 0 1 1
## 1210 1455 DH JFK IAD 0 1 1
## 1211 1455 DL JFK DCA 1 1 1
## 1212 1455 RU EWR BWI 0 1 0
## 1213 1455 OH JFK BWI 0 2 0
## 1214 1455 DH LGA IAD 1 2 1
## 1215 1455 DH JFK IAD 1 2 1
## 1216 1455 DL JFK DCA 0 2 1
## 1217 1455 OH JFK BWI 0 3 0
## 1218 1455 DH LGA IAD 0 3 1
## 1219 1455 DH JFK IAD 0 3 0
## 1220 1455 DL JFK DCA 0 3 0
## 1221 1455 RU EWR BWI 0 3 0
## 1222 1455 OH JFK BWI 0 4 0
## 1223 1455 DH LGA IAD 0 4 1
## 1224 1455 DH JFK IAD 0 4 0
## 1225 1455 DL JFK DCA 0 4 1
## 1226 1455 RU EWR BWI 0 4 0
## 1227 1455 OH JFK BWI 0 5 0
## 1228 1455 DH LGA IAD 0 5 1
## 1229 1455 DH JFK IAD 0 5 0
## 1230 1455 DL JFK DCA 0 5 1
## 1231 1455 RU EWR BWI 0 5 1
## 1232 1455 OH JFK BWI 0 6 0
## 1233 1455 DL JFK DCA 0 6 0
## 1234 1455 RU EWR BWI 0 6 0
## 1235 1500 MQ LGA DCA 0 4 0
## 1236 1500 US LGA DCA 0 4 0
## 1237 1500 MQ LGA DCA 0 5 0
## 1238 1500 US LGA DCA 0 5 0
## 1239 1500 US LGA DCA 0 6 0
## 1240 1500 MQ LGA DCA 0 7 1
## 1241 1500 US LGA DCA 0 7 0
## 1242 1500 US LGA DCA 0 1 0
## 1243 1500 MQ LGA DCA 0 2 1
## 1244 1500 US LGA DCA 0 2 0
## 1245 1500 RU EWR IAD 0 2 0
## 1246 1500 MQ LGA DCA 0 3 1
## 1247 1500 US LGA DCA 0 3 1
## 1248 1500 RU EWR IAD 0 3 1
## 1249 1500 MQ LGA DCA 0 4 0
## 1250 1500 US LGA DCA 0 4 0
## 1251 1500 RU EWR IAD 0 4 0
## 1252 1500 MQ LGA DCA 0 5 0
## 1253 1500 US LGA DCA 0 5 0
## 1254 1500 RU EWR IAD 0 5 0
## 1255 1500 US LGA DCA 0 6 0
## 1256 1500 RU EWR IAD 0 6 0
## 1257 1500 MQ LGA DCA 0 7 0
## 1258 1500 US LGA DCA 0 7 0
## 1259 1500 RU EWR IAD 0 7 0
## 1260 1500 MQ LGA DCA 0 1 0
## 1261 1500 US LGA DCA 0 1 0
## 1262 1500 RU EWR IAD 0 1 0
## 1263 1500 MQ LGA DCA 0 2 0
## 1264 1500 US LGA DCA 0 2 0
## 1265 1500 RU EWR IAD 0 2 0
## 1266 1500 MQ LGA DCA 0 3 0
## 1267 1500 US LGA DCA 0 3 0
## 1268 1500 RU EWR IAD 0 3 0
## 1269 1500 MQ LGA DCA 0 4 0
## 1270 1500 US LGA DCA 0 4 0
## 1271 1500 RU EWR IAD 0 4 0
## 1272 1500 US LGA DCA 0 5 0
## 1273 1500 RU EWR IAD 0 5 1
## 1274 1500 US LGA DCA 0 6 0
## 1275 1500 RU EWR IAD 0 6 0
## 1276 1500 MQ LGA DCA 0 7 1
## 1277 1500 RU EWR IAD 0 7 1
## 1278 1500 MQ LGA DCA 0 1 1
## 1279 1500 US LGA DCA 0 1 0
## 1280 1500 RU EWR IAD 0 1 0
## 1281 1500 MQ LGA DCA 0 2 0
## 1282 1500 US LGA DCA 0 2 0
## 1283 1500 RU EWR IAD 0 2 0
## 1284 1500 MQ LGA DCA 0 3 0
## 1285 1500 US LGA DCA 0 3 0
## 1286 1500 RU EWR IAD 0 3 1
## 1287 1500 MQ LGA DCA 0 4 0
## 1288 1500 US LGA DCA 0 4 0
## 1289 1500 RU EWR IAD 0 4 0
## 1290 1500 US LGA DCA 0 5 0
## 1291 1500 RU EWR IAD 0 5 0
## 1292 1500 US LGA DCA 0 6 0
## 1293 1500 RU EWR IAD 0 6 0
## 1294 1500 MQ LGA DCA 0 7 1
## 1295 1500 US LGA DCA 0 7 0
## 1296 1500 RU EWR IAD 0 7 0
## 1297 1500 RU EWR IAD 0 1 1
## 1298 1500 MQ LGA DCA 0 2 0
## 1299 1500 US LGA DCA 0 2 0
## 1300 1500 RU EWR IAD 0 2 1
## 1301 1500 MQ LGA DCA 0 3 0
## 1302 1500 US LGA DCA 0 3 1
## 1303 1500 RU EWR IAD 0 3 0
## 1304 1500 MQ LGA DCA 0 4 1
## 1305 1500 US LGA DCA 0 4 0
## 1306 1500 RU EWR IAD 0 4 0
## 1307 1500 MQ LGA DCA 0 5 0
## 1308 1500 US LGA DCA 0 5 0
## 1309 1500 RU EWR IAD 0 5 1
## 1310 1500 US LGA DCA 0 6 0
## 1311 1500 RU EWR IAD 0 6 0
## 1312 1515 RU EWR IAD 0 4 0
## 1313 1515 RU EWR IAD 0 5 1
## 1314 1515 RU EWR IAD 0 6 0
## 1315 1515 RU EWR IAD 0 7 1
## 1316 1515 RU EWR IAD 0 1 1
## 1317 1520 MQ JFK DCA 0 6 0
## 1318 1525 RU EWR DCA 0 4 0
## 1319 1525 RU EWR DCA 0 5 0
## 1320 1525 RU EWR DCA 0 1 1
## 1321 1525 RU EWR DCA 0 2 1
## 1322 1525 RU EWR DCA 0 3 0
## 1323 1525 RU EWR DCA 0 4 0
## 1324 1525 RU EWR DCA 0 5 0
## 1325 1525 RU EWR DCA 0 1 0
## 1326 1525 RU EWR DCA 0 2 0
## 1327 1525 RU EWR DCA 0 3 0
## 1328 1525 RU EWR DCA 0 4 0
## 1329 1525 RU EWR DCA 0 5 1
## 1330 1525 RU EWR DCA 0 1 0
## 1331 1525 RU EWR DCA 0 2 1
## 1332 1525 RU EWR DCA 0 3 1
## 1333 1525 RU EWR DCA 0 4 0
## 1334 1525 RU EWR DCA 0 5 1
## 1335 1525 RU EWR DCA 1 1 1
## 1336 1525 RU EWR DCA 0 3 0
## 1337 1525 RU EWR DCA 0 4 1
## 1338 1525 RU EWR DCA 0 5 1
## 1339 1530 MQ JFK DCA 0 4 0
## 1340 1530 MQ JFK DCA 0 5 0
## 1341 1530 MQ JFK DCA 0 6 1
## 1342 1530 MQ JFK DCA 0 7 1
## 1343 1530 MQ JFK DCA 0 1 0
## 1344 1530 DL LGA DCA 0 2 0
## 1345 1530 MQ JFK DCA 0 2 0
## 1346 1530 DL LGA DCA 0 3 0
## 1347 1530 MQ JFK DCA 0 3 0
## 1348 1530 DL LGA DCA 0 4 0
## 1349 1530 MQ JFK DCA 0 4 0
## 1350 1530 DL LGA DCA 0 5 0
## 1351 1530 MQ JFK DCA 0 5 0
## 1352 1530 MQ JFK DCA 0 6 0
## 1353 1530 DL LGA DCA 0 7 0
## 1354 1530 MQ JFK DCA 0 7 0
## 1355 1530 DL LGA DCA 0 1 0
## 1356 1530 MQ JFK DCA 0 1 0
## 1357 1530 DL LGA DCA 0 2 0
## 1358 1530 MQ JFK DCA 0 2 0
## 1359 1530 DL LGA DCA 0 3 1
## 1360 1530 MQ JFK DCA 0 3 0
## 1361 1530 DL LGA DCA 0 4 0
## 1362 1530 MQ JFK DCA 0 4 0
## 1363 1530 DL LGA DCA 0 5 0
## 1364 1530 MQ JFK DCA 0 5 0
## 1365 1530 MQ JFK DCA 0 6 0
## 1366 1530 MQ JFK DCA 0 7 1
## 1367 1530 DL LGA DCA 0 1 0
## 1368 1530 MQ JFK DCA 0 1 0
## 1369 1530 DL LGA DCA 0 2 0
## 1370 1530 MQ JFK DCA 0 2 0
## 1371 1530 DL LGA DCA 0 3 0
## 1372 1530 MQ JFK DCA 0 3 0
## 1373 1530 DL LGA DCA 0 4 0
## 1374 1530 MQ JFK DCA 0 4 0
## 1375 1530 DL LGA DCA 0 5 0
## 1376 1530 MQ JFK DCA 0 5 1
## 1377 1530 MQ JFK DCA 0 6 0
## 1378 1530 DL LGA DCA 0 7 0
## 1379 1530 MQ JFK DCA 0 7 1
## 1380 1530 DL LGA DCA 1 1 1
## 1381 1530 MQ JFK DCA 1 1 1
## 1382 1530 MQ JFK DCA 0 2 1
## 1383 1530 DL LGA DCA 0 3 0
## 1384 1530 MQ JFK DCA 0 3 0
## 1385 1530 DL LGA DCA 0 4 0
## 1386 1530 MQ JFK DCA 0 4 1
## 1387 1530 DL LGA DCA 0 5 0
## 1388 1530 MQ JFK DCA 0 5 0
## 1389 1600 RU EWR DCA 0 6 0
## 1390 1600 US LGA DCA 0 7 0
## 1391 1600 MQ LGA DCA 0 1 1
## 1392 1600 US LGA DCA 0 1 0
## 1393 1600 MQ LGA DCA 0 2 0
## 1394 1600 US LGA DCA 0 2 0
## 1395 1600 MQ LGA DCA 0 3 1
## 1396 1600 US LGA DCA 0 3 1
## 1397 1600 MQ LGA DCA 0 4 0
## 1398 1600 US LGA DCA 0 4 0
## 1399 1600 MQ LGA DCA 0 5 1
## 1400 1600 US LGA DCA 0 5 0
## 1401 1600 RU EWR DCA 0 6 0
## 1402 1600 US LGA DCA 0 7 0
## 1403 1600 MQ LGA DCA 0 1 0
## 1404 1600 US LGA DCA 0 1 0
## 1405 1600 MQ LGA DCA 0 2 1
## 1406 1600 US LGA DCA 0 2 1
## 1407 1600 MQ LGA DCA 0 3 0
## 1408 1600 US LGA DCA 0 3 0
## 1409 1600 MQ LGA DCA 0 4 1
## 1410 1600 US LGA DCA 0 4 0
## 1411 1600 MQ LGA DCA 0 5 1
## 1412 1600 US LGA DCA 0 5 0
## 1413 1600 RU EWR DCA 0 6 0
## 1414 1600 US LGA DCA 0 7 1
## 1415 1600 MQ LGA DCA 0 1 0
## 1416 1600 US LGA DCA 0 1 0
## 1417 1600 MQ LGA DCA 0 2 0
## 1418 1600 US LGA DCA 0 2 0
## 1419 1600 MQ LGA DCA 0 3 0
## 1420 1600 US LGA DCA 0 3 0
## 1421 1600 MQ LGA DCA 0 4 0
## 1422 1600 US LGA DCA 0 4 0
## 1423 1600 RU EWR DCA 0 6 0
## 1424 1600 US LGA DCA 0 7 0
## 1425 1600 US LGA DCA 0 1 0
## 1426 1600 MQ LGA DCA 1 2 1
## 1427 1600 US LGA DCA 0 2 0
## 1428 1600 MQ LGA DCA 0 3 0
## 1429 1600 US LGA DCA 0 3 1
## 1430 1600 US LGA DCA 0 4 0
## 1431 1600 MQ LGA DCA 0 5 1
## 1432 1600 US LGA DCA 0 5 0
## 1433 1600 RU EWR DCA 0 6 0
## 1434 1605 RU EWR BWI 0 7 1
## 1435 1610 DH JFK IAD 0 5 0
## 1436 1610 DH JFK IAD 0 6 0
## 1437 1610 DH JFK IAD 0 7 0
## 1438 1610 DH JFK IAD 0 1 1
## 1439 1610 DH JFK IAD 0 2 0
## 1440 1610 DH JFK IAD 0 3 0
## 1441 1610 DH JFK IAD 0 4 0
## 1442 1610 DH JFK IAD 0 5 0
## 1443 1610 DH JFK IAD 0 7 0
## 1444 1610 DH JFK IAD 0 2 1
## 1445 1610 DH JFK IAD 0 3 0
## 1446 1610 DH JFK IAD 0 4 0
## 1447 1610 DH JFK IAD 0 5 0
## 1448 1610 DH JFK IAD 0 7 1
## 1449 1610 DH JFK IAD 0 1 0
## 1450 1610 DH JFK IAD 0 2 0
## 1451 1610 DH JFK IAD 0 3 0
## 1452 1610 DH JFK IAD 0 4 0
## 1453 1610 DH JFK IAD 0 5 0
## 1454 1610 DH JFK IAD 0 7 0
## 1455 1610 DH JFK IAD 0 1 0
## 1456 1610 DH JFK IAD 0 3 0
## 1457 1610 DH JFK IAD 0 4 0
## 1458 1610 DH JFK IAD 0 5 0
## 1459 1630 RU EWR DCA 0 4 0
## 1460 1630 RU EWR DCA 0 5 0
## 1461 1630 DL LGA DCA 0 6 0
## 1462 1630 DL LGA DCA 0 7 0
## 1463 1630 CO EWR DCA 0 7 1
## 1464 1630 DL LGA DCA 0 1 0
## 1465 1630 DL LGA DCA 0 2 0
## 1466 1630 RU EWR DCA 0 2 0
## 1467 1630 DL LGA DCA 0 3 0
## 1468 1630 RU EWR DCA 0 3 0
## 1469 1630 DL LGA DCA 0 4 0
## 1470 1630 RU EWR DCA 0 4 0
## 1471 1630 DL LGA DCA 0 5 0
## 1472 1630 RU EWR DCA 0 5 0
## 1473 1630 DL LGA DCA 0 6 0
## 1474 1630 DL LGA DCA 0 7 0
## 1475 1630 CO EWR DCA 0 7 0
## 1476 1630 DL LGA DCA 0 1 0
## 1477 1630 RU EWR DCA 0 1 0
## 1478 1630 DL LGA DCA 0 2 1
## 1479 1630 RU EWR DCA 0 2 0
## 1480 1630 DL LGA DCA 0 3 0
## 1481 1630 RU EWR DCA 0 3 0
## 1482 1630 DL LGA DCA 0 4 0
## 1483 1630 RU EWR DCA 0 4 0
## 1484 1630 DL LGA DCA 0 5 0
## 1485 1630 RU EWR DCA 0 5 1
## 1486 1630 DL LGA DCA 0 6 1
## 1487 1630 DL LGA DCA 0 7 0
## 1488 1630 CO EWR DCA 0 7 1
## 1489 1630 DL LGA DCA 0 1 0
## 1490 1630 RU EWR DCA 0 1 0
## 1491 1630 DL LGA DCA 0 2 1
## 1492 1630 RU EWR DCA 0 2 0
## 1493 1630 DL LGA DCA 0 3 1
## 1494 1630 RU EWR DCA 0 3 1
## 1495 1630 DL LGA DCA 0 4 1
## 1496 1630 RU EWR DCA 0 4 0
## 1497 1630 DL LGA DCA 0 5 0
## 1498 1630 RU EWR DCA 0 5 0
## 1499 1630 DL LGA DCA 0 6 0
## 1500 1630 DL LGA DCA 0 7 0
## 1501 1630 CO EWR DCA 0 7 0
## 1502 1630 DL LGA DCA 0 1 0
## 1503 1630 DL LGA DCA 0 2 1
## 1504 1630 RU EWR DCA 0 3 0
## 1505 1630 DL LGA DCA 0 4 0
## 1506 1630 RU EWR DCA 0 4 0
## 1507 1630 DL LGA DCA 0 5 0
## 1508 1630 RU EWR DCA 0 5 0
## 1509 1630 DL LGA DCA 0 6 0
## 1510 1640 DH JFK DCA 0 4 0
## 1511 1640 DH JFK DCA 0 5 0
## 1512 1640 DH JFK DCA 0 7 0
## 1513 1640 DH JFK DCA 0 1 1
## 1514 1640 DH JFK DCA 0 3 0
## 1515 1640 DH JFK DCA 0 4 1
## 1516 1640 DH JFK DCA 0 5 0
## 1517 1640 DH JFK DCA 0 6 1
## 1518 1640 DH JFK DCA 0 7 0
## 1519 1640 DH JFK DCA 0 1 0
## 1520 1640 DH JFK DCA 0 2 0
## 1521 1640 DH JFK DCA 0 3 0
## 1522 1640 DH JFK DCA 0 4 0
## 1523 1640 DH JFK DCA 0 5 0
## 1524 1640 DH JFK DCA 0 6 0
## 1525 1640 DH JFK DCA 0 7 1
## 1526 1640 DH JFK DCA 0 1 0
## 1527 1640 DH JFK DCA 0 2 0
## 1528 1640 DH JFK DCA 0 4 0
## 1529 1640 DH JFK DCA 0 5 0
## 1530 1640 DH JFK DCA 0 6 0
## 1531 1640 DH JFK DCA 0 7 0
## 1532 1640 DH JFK DCA 0 2 1
## 1533 1640 DH JFK DCA 0 3 0
## 1534 1640 DH JFK DCA 0 4 0
## 1535 1640 DH JFK DCA 0 5 0
## 1536 1640 DH JFK DCA 0 6 0
## 1537 1645 DH JFK IAD 0 4 0
## 1538 1645 DH JFK IAD 0 5 0
## 1539 1645 DH JFK IAD 0 6 0
## 1540 1645 DH JFK IAD 0 7 0
## 1541 1645 DH JFK IAD 0 1 0
## 1542 1645 DH JFK IAD 0 2 0
## 1543 1645 DH JFK IAD 0 3 0
## 1544 1645 DH JFK IAD 0 4 0
## 1545 1645 DH JFK IAD 0 5 0
## 1546 1645 DH JFK IAD 0 6 0
## 1547 1645 DH JFK IAD 0 7 0
## 1548 1645 DH JFK IAD 0 1 0
## 1549 1645 DH JFK IAD 0 2 0
## 1550 1645 DH JFK IAD 0 3 0
## 1551 1645 DH JFK IAD 0 4 0
## 1552 1645 DH JFK IAD 0 5 0
## 1553 1645 DH JFK IAD 0 6 0
## 1554 1645 DH JFK IAD 0 7 0
## 1555 1645 DH JFK IAD 0 1 0
## 1556 1645 DH JFK IAD 0 2 0
## 1557 1645 DH JFK IAD 0 3 0
## 1558 1645 DH JFK IAD 0 4 0
## 1559 1645 DH JFK IAD 0 5 0
## 1560 1645 DH JFK IAD 0 6 0
## 1561 1645 DH JFK IAD 0 7 0
## 1562 1645 DH JFK IAD 0 1 1
## 1563 1645 DH JFK IAD 0 3 0
## 1564 1645 DH JFK IAD 0 4 0
## 1565 1645 DH JFK IAD 0 5 0
## 1566 1645 DH JFK IAD 0 6 0
## 1567 1700 US LGA DCA 0 4 0
## 1568 1700 RU EWR IAD 0 4 0
## 1569 1700 US LGA DCA 0 5 0
## 1570 1700 RU EWR IAD 0 5 0
## 1571 1700 US LGA DCA 0 6 0
## 1572 1700 MQ LGA DCA 0 7 0
## 1573 1700 US LGA DCA 0 7 0
## 1574 1700 MQ LGA DCA 0 1 0
## 1575 1700 US LGA DCA 0 1 0
## 1576 1700 MQ LGA DCA 0 2 0
## 1577 1700 US LGA DCA 0 2 0
## 1578 1700 RU EWR IAD 0 2 0
## 1579 1700 US LGA DCA 0 3 0
## 1580 1700 RU EWR IAD 0 3 0
## 1581 1700 US LGA DCA 0 4 1
## 1582 1700 RU EWR IAD 0 4 0
## 1583 1700 MQ LGA DCA 0 5 0
## 1584 1700 US LGA DCA 0 5 0
## 1585 1700 RU EWR IAD 0 5 0
## 1586 1700 US LGA DCA 0 6 0
## 1587 1700 RU EWR IAD 0 6 0
## 1588 1700 MQ LGA DCA 0 7 0
## 1589 1700 US LGA DCA 0 7 0
## 1590 1700 RU EWR IAD 0 7 0
## 1591 1700 MQ LGA DCA 0 1 0
## 1592 1700 US LGA DCA 0 1 1
## 1593 1700 RU EWR IAD 0 1 0
## 1594 1700 MQ LGA DCA 0 2 1
## 1595 1700 US LGA DCA 0 2 0
## 1596 1700 RU EWR IAD 0 2 0
## 1597 1700 MQ LGA DCA 0 3 0
## 1598 1700 US LGA DCA 0 3 0
## 1599 1700 RU EWR IAD 0 3 0
## 1600 1700 MQ LGA DCA 0 4 1
## 1601 1700 US LGA DCA 0 4 0
## 1602 1700 MQ LGA DCA 0 5 1
## 1603 1700 US LGA DCA 0 5 0
## 1604 1700 RU EWR IAD 0 5 1
## 1605 1700 US LGA DCA 0 6 0
## 1606 1700 RU EWR IAD 0 6 0
## 1607 1700 MQ LGA DCA 0 7 1
## 1608 1700 MQ LGA DCA 0 1 0
## 1609 1700 US LGA DCA 0 1 0
## 1610 1700 RU EWR IAD 0 1 0
## 1611 1700 US LGA DCA 0 2 0
## 1612 1700 RU EWR IAD 0 2 0
## 1613 1700 MQ LGA DCA 0 3 0
## 1614 1700 US LGA DCA 0 3 0
## 1615 1700 RU EWR IAD 0 3 0
## 1616 1700 MQ LGA DCA 0 4 0
## 1617 1700 US LGA DCA 0 4 0
## 1618 1700 RU EWR IAD 0 4 0
## 1619 1700 MQ LGA DCA 0 5 0
## 1620 1700 US LGA DCA 0 5 0
## 1621 1700 RU EWR IAD 0 5 0
## 1622 1700 US LGA DCA 0 6 0
## 1623 1700 RU EWR IAD 0 6 0
## 1624 1700 MQ LGA DCA 0 7 0
## 1625 1700 US LGA DCA 0 7 0
## 1626 1700 RU EWR IAD 0 7 0
## 1627 1700 US LGA DCA 0 1 0
## 1628 1700 RU EWR IAD 0 1 1
## 1629 1700 US LGA DCA 0 2 0
## 1630 1700 MQ LGA DCA 0 3 1
## 1631 1700 US LGA DCA 0 3 0
## 1632 1700 RU EWR IAD 0 3 0
## 1633 1700 MQ LGA DCA 0 4 0
## 1634 1700 US LGA DCA 0 4 0
## 1635 1700 RU EWR IAD 0 4 0
## 1636 1700 MQ LGA DCA 0 5 0
## 1637 1700 US LGA DCA 0 5 1
## 1638 1700 RU EWR IAD 0 5 1
## 1639 1700 US LGA DCA 0 6 0
## 1640 1700 RU EWR IAD 0 6 0
## 1641 1710 DH EWR IAD 0 4 0
## 1642 1710 DH EWR IAD 0 6 0
## 1643 1710 DH EWR IAD 0 7 1
## 1644 1710 DH EWR IAD 0 1 1
## 1645 1710 DH EWR IAD 0 2 0
## 1646 1710 DH EWR IAD 0 3 0
## 1647 1710 DH EWR IAD 0 4 0
## 1648 1710 DH EWR IAD 0 5 0
## 1649 1710 DH EWR IAD 0 6 0
## 1650 1710 DH EWR IAD 0 7 0
## 1651 1710 DH EWR IAD 0 1 0
## 1652 1710 DH EWR IAD 0 2 0
## 1653 1710 DH EWR IAD 0 3 0
## 1654 1710 DH EWR IAD 0 5 0
## 1655 1710 DH EWR IAD 0 6 0
## 1656 1710 DH EWR IAD 0 7 1
## 1657 1710 DH EWR IAD 0 1 0
## 1658 1710 DH EWR IAD 0 2 0
## 1659 1710 DH EWR IAD 0 3 1
## 1660 1710 DH EWR IAD 0 4 0
## 1661 1710 DH EWR IAD 0 5 1
## 1662 1710 DH EWR IAD 0 6 0
## 1663 1710 DH EWR IAD 0 7 0
## 1664 1710 DH EWR IAD 1 2 1
## 1665 1710 DH EWR IAD 0 3 1
## 1666 1710 DH EWR IAD 0 4 0
## 1667 1710 DH EWR IAD 0 5 0
## 1668 1710 DH EWR IAD 0 6 0
## 1669 1715 DH LGA IAD 0 4 0
## 1670 1715 DH JFK IAD 0 4 0
## 1671 1715 DH LGA IAD 0 5 0
## 1672 1715 DH JFK IAD 0 5 0
## 1673 1715 DH LGA IAD 0 6 0
## 1674 1715 DH JFK IAD 0 6 0
## 1675 1715 DH LGA IAD 0 7 1
## 1676 1715 DH JFK IAD 0 7 0
## 1677 1715 DH LGA IAD 0 1 1
## 1678 1715 DH JFK IAD 0 1 0
## 1679 1715 DH LGA IAD 0 2 0
## 1680 1715 DH JFK IAD 0 2 1
## 1681 1715 DH LGA IAD 0 3 1
## 1682 1715 DH JFK IAD 0 3 1
## 1683 1715 DH LGA IAD 0 4 1
## 1684 1715 DH JFK IAD 0 4 0
## 1685 1715 DH LGA IAD 0 5 1
## 1686 1715 DH JFK IAD 0 5 0
## 1687 1715 DH LGA IAD 0 6 0
## 1688 1715 DH JFK IAD 0 6 0
## 1689 1715 DH LGA IAD 0 7 0
## 1690 1715 DH JFK IAD 0 7 0
## 1691 1715 DH LGA IAD 0 1 0
## 1692 1715 DH JFK IAD 0 1 0
## 1693 1715 DH LGA IAD 0 2 1
## 1694 1715 DH JFK IAD 0 2 0
## 1695 1715 DH LGA IAD 0 3 0
## 1696 1715 DH JFK IAD 0 3 0
## 1697 1715 DH JFK IAD 0 4 0
## 1698 1715 DH LGA IAD 0 5 1
## 1699 1715 DH JFK IAD 0 5 0
## 1700 1715 DH LGA IAD 0 6 0
## 1701 1715 DH JFK IAD 0 6 1
## 1702 1715 DH LGA IAD 0 7 1
## 1703 1715 DH JFK IAD 0 7 1
## 1704 1715 DH LGA IAD 0 1 0
## 1705 1715 DH JFK IAD 0 1 0
## 1706 1715 DH LGA IAD 0 2 0
## 1707 1715 DH JFK IAD 0 2 0
## 1708 1715 DH LGA IAD 0 3 0
## 1709 1715 DH JFK IAD 0 3 0
## 1710 1715 DH LGA IAD 0 4 0
## 1711 1715 DH JFK IAD 0 4 0
## 1712 1715 DH LGA IAD 0 5 0
## 1713 1715 DH JFK IAD 0 5 0
## 1714 1715 DH LGA IAD 0 6 0
## 1715 1715 DH JFK IAD 0 6 1
## 1716 1715 DH LGA IAD 0 7 1
## 1717 1715 DH JFK IAD 0 7 1
## 1718 1715 DH LGA IAD 0 1 1
## 1719 1715 DH JFK IAD 0 1 1
## 1720 1715 DH LGA IAD 1 2 1
## 1721 1715 DH JFK IAD 1 2 1
## 1722 1715 DH LGA IAD 0 3 0
## 1723 1715 DH JFK IAD 0 3 1
## 1724 1715 DH LGA IAD 0 4 1
## 1725 1715 DH JFK IAD 0 4 0
## 1726 1715 DH LGA IAD 0 5 0
## 1727 1715 DH JFK IAD 0 5 0
## 1728 1715 DH LGA IAD 0 6 0
## 1729 1715 DH JFK IAD 0 6 0
## 1730 1720 RU EWR BWI 0 4 0
## 1731 1720 RU EWR BWI 0 5 0
## 1732 1720 RU EWR BWI 0 6 0
## 1733 1720 RU EWR BWI 0 2 1
## 1734 1720 RU EWR BWI 0 3 1
## 1735 1720 RU EWR BWI 0 4 0
## 1736 1720 RU EWR BWI 0 5 0
## 1737 1720 RU EWR BWI 0 6 0
## 1738 1720 RU EWR BWI 0 7 0
## 1739 1720 RU EWR BWI 0 1 0
## 1740 1720 RU EWR BWI 0 2 1
## 1741 1720 RU EWR BWI 0 3 0
## 1742 1720 RU EWR BWI 0 4 1
## 1743 1720 RU EWR BWI 0 5 1
## 1744 1720 RU EWR BWI 0 6 0
## 1745 1720 RU EWR BWI 0 1 0
## 1746 1720 RU EWR BWI 0 2 1
## 1747 1720 RU EWR BWI 0 3 1
## 1748 1720 RU EWR BWI 0 4 1
## 1749 1720 RU EWR BWI 0 5 0
## 1750 1720 RU EWR BWI 0 6 0
## 1751 1720 RU EWR BWI 0 7 0
## 1752 1720 RU EWR BWI 0 1 1
## 1753 1720 RU EWR BWI 0 3 1
## 1754 1720 RU EWR BWI 0 4 0
## 1755 1720 RU EWR BWI 0 5 1
## 1756 1720 RU EWR BWI 0 6 0
## 1757 1725 RU EWR IAD 0 6 0
## 1758 1730 DL LGA DCA 0 4 0
## 1759 1730 CO EWR DCA 0 4 0
## 1760 1730 DL LGA DCA 0 5 0
## 1761 1730 CO EWR DCA 0 5 0
## 1762 1730 RU EWR DCA 0 6 0
## 1763 1730 RU EWR DCA 0 7 1
## 1764 1730 DL LGA DCA 0 1 0
## 1765 1730 CO EWR DCA 0 1 1
## 1766 1730 DL LGA DCA 0 2 0
## 1767 1730 CO EWR DCA 0 2 1
## 1768 1730 DL LGA DCA 0 3 0
## 1769 1730 CO EWR DCA 0 3 1
## 1770 1730 DL LGA DCA 0 4 0
## 1771 1730 CO EWR DCA 0 4 0
## 1772 1730 DL LGA DCA 0 5 0
## 1773 1730 CO EWR DCA 0 5 0
## 1774 1730 RU EWR DCA 0 6 0
## 1775 1730 DL LGA DCA 0 7 0
## 1776 1730 RU EWR DCA 0 7 0
## 1777 1730 DL LGA DCA 0 1 0
## 1778 1730 CO EWR DCA 0 1 1
## 1779 1730 DL LGA DCA 0 2 0
## 1780 1730 CO EWR DCA 0 2 1
## 1781 1730 DL LGA DCA 0 3 0
## 1782 1730 CO EWR DCA 0 3 1
## 1783 1730 DL LGA DCA 0 4 0
## 1784 1730 DL LGA DCA 0 5 0
## 1785 1730 CO EWR DCA 0 5 1
## 1786 1730 RU EWR DCA 0 6 0
## 1787 1730 CO EWR DCA 0 1 1
## 1788 1730 DL LGA DCA 0 2 0
## 1789 1730 CO EWR DCA 0 2 0
## 1790 1730 DL LGA DCA 0 3 0
## 1791 1730 CO EWR DCA 0 3 1
## 1792 1730 DL LGA DCA 0 4 1
## 1793 1730 CO EWR DCA 0 4 1
## 1794 1730 DL LGA DCA 0 5 0
## 1795 1730 CO EWR DCA 0 5 0
## 1796 1730 RU EWR DCA 0 6 0
## 1797 1730 DL LGA DCA 0 7 0
## 1798 1730 RU EWR DCA 0 7 0
## 1799 1730 DL LGA DCA 0 1 0
## 1800 1730 CO EWR DCA 1 2 1
## 1801 1730 DL LGA DCA 0 3 0
## 1802 1730 CO EWR DCA 0 3 0
## 1803 1730 DL LGA DCA 0 4 0
## 1804 1730 CO EWR DCA 0 4 0
## 1805 1730 DL LGA DCA 0 5 0
## 1806 1730 CO EWR DCA 0 5 0
## 1807 1730 RU EWR DCA 0 6 0
## 1808 1800 US LGA DCA 0 7 0
## 1809 1800 US LGA DCA 0 1 0
## 1810 1800 US LGA DCA 0 2 0
## 1811 1800 US LGA DCA 0 3 0
## 1812 1800 US LGA DCA 0 4 0
## 1813 1800 US LGA DCA 0 5 0
## 1814 1800 DH JFK IAD 0 6 0
## 1815 1800 US LGA DCA 0 7 0
## 1816 1800 US LGA DCA 0 1 0
## 1817 1800 US LGA DCA 0 2 0
## 1818 1800 US LGA DCA 0 3 0
## 1819 1800 US LGA DCA 0 4 0
## 1820 1800 US LGA DCA 0 5 0
## 1821 1800 DH JFK IAD 0 6 1
## 1822 1800 US LGA DCA 0 7 0
## 1823 1800 US LGA DCA 0 1 0
## 1824 1800 US LGA DCA 0 2 0
## 1825 1800 US LGA DCA 0 3 0
## 1826 1800 US LGA DCA 0 4 0
## 1827 1800 US LGA DCA 0 5 0
## 1828 1800 DH JFK IAD 0 6 0
## 1829 1800 US LGA DCA 0 7 0
## 1830 1800 US LGA DCA 0 1 0
## 1831 1800 US LGA DCA 0 3 0
## 1832 1800 US LGA DCA 0 4 0
## 1833 1800 US LGA DCA 0 5 0
## 1834 1800 DH JFK IAD 0 6 0
## 1835 1830 MQ JFK DCA 0 4 0
## 1836 1830 MQ JFK DCA 0 5 0
## 1837 1830 DL LGA DCA 0 6 0
## 1838 1830 MQ JFK DCA 0 6 0
## 1839 1830 DL LGA DCA 0 7 0
## 1840 1830 MQ JFK DCA 0 7 1
## 1841 1830 DL LGA DCA 0 1 0
## 1842 1830 DL LGA DCA 0 2 0
## 1843 1830 MQ JFK DCA 0 2 0
## 1844 1830 DL LGA DCA 0 3 0
## 1845 1830 MQ JFK DCA 0 3 1
## 1846 1830 DL LGA DCA 0 4 0
## 1847 1830 MQ JFK DCA 0 4 0
## 1848 1830 DL LGA DCA 0 5 0
## 1849 1830 MQ JFK DCA 0 5 1
## 1850 1830 DL LGA DCA 0 6 0
## 1851 1830 MQ JFK DCA 0 6 0
## 1852 1830 DL LGA DCA 0 7 0
## 1853 1830 MQ JFK DCA 0 7 1
## 1854 1830 DL LGA DCA 0 1 0
## 1855 1830 MQ JFK DCA 0 1 0
## 1856 1830 DL LGA DCA 0 2 0
## 1857 1830 MQ JFK DCA 0 2 1
## 1858 1830 DL LGA DCA 0 3 0
## 1859 1830 MQ JFK DCA 0 3 0
## 1860 1830 DL LGA DCA 0 4 0
## 1861 1830 MQ JFK DCA 0 4 0
## 1862 1830 DL LGA DCA 0 5 0
## 1863 1830 MQ JFK DCA 0 5 1
## 1864 1830 DL LGA DCA 0 6 0
## 1865 1830 MQ JFK DCA 0 6 0
## 1866 1830 DL LGA DCA 0 7 1
## 1867 1830 MQ JFK DCA 0 7 1
## 1868 1830 DL LGA DCA 0 1 0
## 1869 1830 MQ JFK DCA 0 1 1
## 1870 1830 DL LGA DCA 0 2 0
## 1871 1830 MQ JFK DCA 0 2 0
## 1872 1830 DL LGA DCA 0 3 0
## 1873 1830 MQ JFK DCA 0 3 0
## 1874 1830 DL LGA DCA 0 4 0
## 1875 1830 MQ JFK DCA 0 4 0
## 1876 1830 DL LGA DCA 0 5 0
## 1877 1830 MQ JFK DCA 0 5 0
## 1878 1830 DL LGA DCA 0 6 0
## 1879 1830 MQ JFK DCA 0 6 0
## 1880 1830 DL LGA DCA 0 7 0
## 1881 1830 MQ JFK DCA 0 7 0
## 1882 1830 MQ JFK DCA 1 1 1
## 1883 1830 DL LGA DCA 0 2 1
## 1884 1830 MQ JFK DCA 1 2 1
## 1885 1830 DL LGA DCA 0 3 0
## 1886 1830 MQ JFK DCA 0 3 0
## 1887 1830 DL LGA DCA 0 4 0
## 1888 1830 MQ JFK DCA 0 4 0
## 1889 1830 DL LGA DCA 0 5 0
## 1890 1830 MQ JFK DCA 0 5 0
## 1891 1830 DL LGA DCA 0 6 0
## 1892 1830 MQ JFK DCA 0 6 0
## 1893 1900 MQ LGA DCA 0 4 0
## 1894 1900 RU EWR IAD 0 4 0
## 1895 1900 RU EWR DCA 0 4 0
## 1896 1900 US LGA DCA 0 5 0
## 1897 1900 RU EWR IAD 0 5 0
## 1898 1900 RU EWR DCA 0 5 0
## 1899 1900 US LGA DCA 0 6 0
## 1900 1900 MQ LGA DCA 0 7 1
## 1901 1900 US LGA DCA 0 7 0
## 1902 1900 RU EWR IAD 0 7 1
## 1903 1900 RU EWR DCA 0 7 1
## 1904 1900 MQ LGA DCA 0 1 1
## 1905 1900 US LGA DCA 0 1 0
## 1906 1900 RU EWR DCA 0 1 1
## 1907 1900 MQ LGA DCA 0 2 0
## 1908 1900 US LGA DCA 0 2 0
## 1909 1900 CO EWR DCA 0 2 1
## 1910 1900 RU EWR IAD 0 2 1
## 1911 1900 MQ LGA DCA 0 3 1
## 1912 1900 US LGA DCA 0 3 0
## 1913 1900 CO EWR DCA 0 3 1
## 1914 1900 RU EWR IAD 0 3 1
## 1915 1900 MQ LGA DCA 0 4 0
## 1916 1900 US LGA DCA 0 4 1
## 1917 1900 CO EWR DCA 0 4 0
## 1918 1900 RU EWR IAD 0 4 0
## 1919 1900 MQ LGA DCA 0 5 1
## 1920 1900 US LGA DCA 0 5 0
## 1921 1900 CO EWR DCA 0 5 0
## 1922 1900 RU EWR IAD 0 5 0
## 1923 1900 US LGA DCA 0 6 0
## 1924 1900 MQ LGA DCA 0 7 0
## 1925 1900 US LGA DCA 0 7 0
## 1926 1900 CO EWR DCA 0 7 0
## 1927 1900 RU EWR IAD 0 7 0
## 1928 1900 MQ LGA DCA 0 1 0
## 1929 1900 US LGA DCA 0 1 0
## 1930 1900 CO EWR DCA 0 1 0
## 1931 1900 RU EWR IAD 0 1 0
## 1932 1900 MQ LGA DCA 0 2 1
## 1933 1900 US LGA DCA 0 2 0
## 1934 1900 CO EWR DCA 0 2 1
## 1935 1900 RU EWR IAD 0 2 1
## 1936 1900 MQ LGA DCA 0 3 0
## 1937 1900 US LGA DCA 0 3 0
## 1938 1900 CO EWR DCA 0 3 0
## 1939 1900 RU EWR IAD 0 3 0
## 1940 1900 MQ LGA DCA 0 4 1
## 1941 1900 US LGA DCA 0 4 1
## 1942 1900 CO EWR DCA 0 4 1
## 1943 1900 RU EWR IAD 0 4 1
## 1944 1900 MQ LGA DCA 0 5 1
## 1945 1900 US LGA DCA 0 5 1
## 1946 1900 RU EWR IAD 0 5 1
## 1947 1900 US LGA DCA 0 6 0
## 1948 1900 MQ LGA DCA 0 7 1
## 1949 1900 US LGA DCA 0 7 0
## 1950 1900 CO EWR DCA 0 7 1
## 1951 1900 MQ LGA DCA 0 1 1
## 1952 1900 US LGA DCA 0 1 0
## 1953 1900 CO EWR DCA 0 1 0
## 1954 1900 RU EWR IAD 0 1 1
## 1955 1900 MQ LGA DCA 0 2 1
## 1956 1900 US LGA DCA 0 2 0
## 1957 1900 CO EWR DCA 0 2 0
## 1958 1900 RU EWR IAD 0 2 0
## 1959 1900 MQ LGA DCA 0 3 0
## 1960 1900 US LGA DCA 0 3 0
## 1961 1900 CO EWR DCA 0 3 0
## 1962 1900 RU EWR IAD 0 3 0
## 1963 1900 MQ LGA DCA 0 4 0
## 1964 1900 US LGA DCA 0 4 0
## 1965 1900 CO EWR DCA 0 4 0
## 1966 1900 RU EWR IAD 0 4 0
## 1967 1900 MQ LGA DCA 0 5 0
## 1968 1900 US LGA DCA 0 5 0
## 1969 1900 CO EWR DCA 0 5 1
## 1970 1900 RU EWR IAD 0 5 0
## 1971 1900 US LGA DCA 0 6 0
## 1972 1900 MQ LGA DCA 0 7 0
## 1973 1900 US LGA DCA 0 7 0
## 1974 1900 CO EWR DCA 0 7 0
## 1975 1900 RU EWR IAD 0 7 1
## 1976 1900 MQ LGA DCA 1 1 1
## 1977 1900 US LGA DCA 0 1 0
## 1978 1900 CO EWR DCA 0 1 1
## 1979 1900 RU EWR IAD 0 1 1
## 1980 1900 MQ LGA DCA 0 3 1
## 1981 1900 US LGA DCA 0 3 0
## 1982 1900 CO EWR DCA 0 3 1
## 1983 1900 RU EWR IAD 0 3 0
## 1984 1900 MQ LGA DCA 0 4 0
## 1985 1900 US LGA DCA 0 4 0
## 1986 1900 CO EWR DCA 0 4 0
## 1987 1900 RU EWR IAD 0 4 0
## 1988 1900 US LGA DCA 0 5 0
## 1989 1900 CO EWR DCA 0 5 0
## 1990 1900 RU EWR IAD 0 5 1
## 1991 1900 US LGA DCA 0 6 0
## 1992 1930 DL LGA DCA 0 1 1
## 1993 1930 DL LGA DCA 0 2 0
## 1994 1930 DL LGA DCA 0 3 0
## 1995 1930 DL LGA DCA 0 4 0
## 1996 1930 DL LGA DCA 0 5 0
## 1997 1930 DL LGA DCA 0 7 0
## 1998 1930 DL LGA DCA 0 1 0
## 1999 1930 DL LGA DCA 0 2 0
## 2000 1930 DL LGA DCA 0 3 1
## 2001 1930 DL LGA DCA 0 4 1
## 2002 1930 DL LGA DCA 0 5 0
## 2003 1930 DL LGA DCA 0 1 0
## 2004 1930 DL LGA DCA 0 2 0
## 2005 1930 DL LGA DCA 0 3 0
## 2006 1930 DL LGA DCA 0 4 0
## 2007 1930 DL LGA DCA 0 5 0
## 2008 1930 DL LGA DCA 0 7 0
## 2009 1930 DL LGA DCA 0 1 0
## 2010 1930 DL LGA DCA 0 4 0
## 2011 1930 DL LGA DCA 0 5 0
## 2012 2000 US LGA DCA 0 7 0
## 2013 2000 US LGA DCA 0 1 0
## 2014 2000 US LGA DCA 0 2 0
## 2015 2000 US LGA DCA 0 3 1
## 2016 2000 US LGA DCA 0 4 1
## 2017 2000 US LGA DCA 0 5 0
## 2018 2000 US LGA DCA 0 7 0
## 2019 2000 US LGA DCA 0 1 0
## 2020 2000 US LGA DCA 0 2 0
## 2021 2000 US LGA DCA 0 3 1
## 2022 2000 US LGA DCA 0 5 0
## 2023 2000 US LGA DCA 0 7 0
## 2024 2000 US LGA DCA 0 1 0
## 2025 2000 US LGA DCA 0 2 0
## 2026 2000 US LGA DCA 0 3 0
## 2027 2000 US LGA DCA 0 4 0
## 2028 2000 US LGA DCA 0 5 0
## 2029 2000 US LGA DCA 0 7 0
## 2030 2000 US LGA DCA 0 1 0
## 2031 2000 US LGA DCA 0 3 1
## 2032 2000 US LGA DCA 0 4 0
## 2033 2000 US LGA DCA 0 5 0
## 2034 2030 DL LGA DCA 0 4 0
## 2035 2030 DL LGA DCA 0 5 0
## 2036 2030 DL LGA DCA 0 6 0
## 2037 2030 DL LGA DCA 0 7 0
## 2038 2030 DL LGA DCA 0 1 0
## 2039 2030 DL LGA DCA 0 2 0
## 2040 2030 DL LGA DCA 0 3 0
## 2041 2030 DL LGA DCA 0 4 0
## 2042 2030 DL LGA DCA 0 5 0
## 2043 2030 DL LGA DCA 0 6 0
## 2044 2030 DL LGA DCA 0 7 0
## 2045 2030 DL LGA DCA 0 1 0
## 2046 2030 DL LGA DCA 0 2 1
## 2047 2030 DL LGA DCA 0 3 1
## 2048 2030 DL LGA DCA 0 4 1
## 2049 2030 DL LGA DCA 0 5 0
## 2050 2030 DL LGA DCA 0 6 0
## 2051 2030 DL LGA DCA 0 7 0
## 2052 2030 DL LGA DCA 0 1 0
## 2053 2030 DL LGA DCA 0 2 0
## 2054 2030 DL LGA DCA 0 3 0
## 2055 2030 DL LGA DCA 0 4 0
## 2056 2030 DL LGA DCA 0 5 0
## 2057 2030 DL LGA DCA 0 6 0
## 2058 2030 DL LGA DCA 0 7 0
## 2059 2030 DL LGA DCA 0 1 0
## 2060 2030 DL LGA DCA 0 2 1
## 2061 2030 DL LGA DCA 0 3 1
## 2062 2030 DL LGA DCA 0 4 0
## 2063 2030 DL LGA DCA 0 5 0
## 2064 2030 DL LGA DCA 0 6 0
## 2065 2100 US LGA DCA 0 4 0
## 2066 2100 US LGA DCA 0 5 0
## 2067 2100 RU EWR DCA 0 5 0
## 2068 2100 US LGA DCA 0 7 0
## 2069 2100 US LGA DCA 0 1 0
## 2070 2100 RU EWR DCA 0 1 0
## 2071 2100 US LGA DCA 0 2 0
## 2072 2100 RU EWR DCA 0 2 1
## 2073 2100 US LGA DCA 0 3 0
## 2074 2100 RU EWR DCA 0 3 0
## 2075 2100 US LGA DCA 0 4 0
## 2076 2100 RU EWR DCA 0 4 0
## 2077 2100 US LGA DCA 0 5 0
## 2078 2100 RU EWR DCA 0 5 0
## 2079 2100 US LGA DCA 0 7 0
## 2080 2100 US LGA DCA 0 1 0
## 2081 2100 RU EWR DCA 0 1 0
## 2082 2100 US LGA DCA 0 2 0
## 2083 2100 RU EWR DCA 0 2 0
## 2084 2100 US LGA DCA 0 3 0
## 2085 2100 RU EWR DCA 0 3 0
## 2086 2100 US LGA DCA 0 4 1
## 2087 2100 RU EWR DCA 0 4 1
## 2088 2100 US LGA DCA 0 5 0
## 2089 2100 RU EWR DCA 0 5 0
## 2090 2100 US LGA DCA 0 7 0
## 2091 2100 US LGA DCA 0 1 0
## 2092 2100 RU EWR DCA 0 1 0
## 2093 2100 US LGA DCA 0 2 0
## 2094 2100 RU EWR DCA 0 2 0
## 2095 2100 US LGA DCA 0 3 0
## 2096 2100 RU EWR DCA 0 3 0
## 2097 2100 US LGA DCA 0 4 1
## 2098 2100 RU EWR DCA 0 4 0
## 2099 2100 US LGA DCA 0 5 0
## 2100 2100 RU EWR DCA 0 5 0
## 2101 2100 US LGA DCA 0 7 1
## 2102 2100 US LGA DCA 0 1 1
## 2103 2100 RU EWR DCA 0 1 0
## 2104 2100 US LGA DCA 0 3 0
## 2105 2100 RU EWR DCA 0 3 1
## 2106 2100 US LGA DCA 0 4 0
## 2107 2100 RU EWR DCA 0 4 0
## 2108 2100 US LGA DCA 0 5 0
## 2109 2100 RU EWR DCA 0 5 0
## 2110 2120 DH JFK IAD 0 4 0
## 2111 2120 DH LGA IAD 0 4 0
## 2112 2120 DH EWR IAD 0 4 0
## 2113 2120 DH JFK IAD 0 5 1
## 2114 2120 DH LGA IAD 0 5 0
## 2115 2120 DH JFK IAD 0 6 1
## 2116 2120 DH LGA IAD 0 6 0
## 2117 2120 DH EWR IAD 0 6 0
## 2118 2120 DH JFK IAD 0 7 0
## 2119 2120 DH LGA IAD 0 7 0
## 2120 2120 DH EWR IAD 0 7 1
## 2121 2120 DH JFK IAD 0 1 1
## 2122 2120 DH LGA IAD 0 1 0
## 2123 2120 DH EWR IAD 0 1 1
## 2124 2120 DH JFK IAD 0 2 1
## 2125 2120 DH LGA IAD 0 2 0
## 2126 2120 DH EWR IAD 0 2 0
## 2127 2120 DH JFK IAD 0 3 0
## 2128 2120 DH EWR IAD 0 3 0
## 2129 2120 DH LGA IAD 0 4 1
## 2130 2120 DH JFK IAD 0 4 0
## 2131 2120 DH EWR IAD 0 4 0
## 2132 2120 DH LGA IAD 0 5 0
## 2133 2120 DH JFK IAD 0 5 0
## 2134 2120 DH EWR IAD 0 5 0
## 2135 2120 DH LGA IAD 0 6 0
## 2136 2120 DH JFK IAD 0 6 0
## 2137 2120 DH EWR IAD 0 6 0
## 2138 2120 DH LGA IAD 0 7 0
## 2139 2120 DH JFK IAD 0 7 1
## 2140 2120 DH EWR IAD 0 7 0
## 2141 2120 DH LGA IAD 0 1 0
## 2142 2120 DH JFK IAD 0 1 0
## 2143 2120 DH EWR IAD 0 1 0
## 2144 2120 DH LGA IAD 0 2 0
## 2145 2120 DH JFK IAD 0 2 0
## 2146 2120 DH EWR IAD 0 2 0
## 2147 2120 DH LGA IAD 0 3 0
## 2148 2120 DH JFK IAD 0 3 0
## 2149 2120 DH EWR IAD 0 3 1
## 2150 2120 DH LGA IAD 0 4 1
## 2151 2120 DH JFK IAD 0 4 0
## 2152 2120 DH EWR IAD 0 4 0
## 2153 2120 DH LGA IAD 0 5 0
## 2154 2120 DH JFK IAD 0 5 0
## 2155 2120 DH EWR IAD 0 5 0
## 2156 2120 DH LGA IAD 0 6 1
## 2157 2120 DH JFK IAD 0 6 1
## 2158 2120 DH EWR IAD 0 6 1
## 2159 2120 DH LGA IAD 0 7 0
## 2160 2120 DH JFK IAD 0 7 0
## 2161 2120 DH EWR IAD 0 7 0
## 2162 2120 DH LGA IAD 0 1 1
## 2163 2120 DH JFK IAD 0 1 0
## 2164 2120 DH EWR IAD 0 1 1
## 2165 2120 DH LGA IAD 0 2 0
## 2166 2120 DH JFK IAD 0 2 0
## 2167 2120 DH EWR IAD 0 2 0
## 2168 2120 DH LGA IAD 0 3 1
## 2169 2120 DH JFK IAD 0 3 0
## 2170 2120 DH EWR IAD 0 3 0
## 2171 2120 DH LGA IAD 0 4 0
## 2172 2120 DH JFK IAD 0 4 0
## 2173 2120 DH EWR IAD 0 4 0
## 2174 2120 DH LGA IAD 0 5 1
## 2175 2120 DH JFK IAD 0 5 0
## 2176 2120 DH EWR IAD 0 5 1
## 2177 2120 DH LGA IAD 0 6 0
## 2178 2120 DH JFK IAD 0 6 0
## 2179 2120 DH EWR IAD 0 6 0
## 2180 2120 DH LGA IAD 0 7 1
## 2181 2120 DH JFK IAD 1 7 1
## 2182 2120 DH EWR IAD 0 7 1
## 2183 2120 DH LGA IAD 0 1 1
## 2184 2120 DH JFK IAD 0 1 0
## 2185 2120 DH EWR IAD 0 1 1
## 2186 2120 DH JFK IAD 1 2 1
## 2187 2120 DH EWR IAD 0 2 1
## 2188 2120 DH LGA IAD 0 3 1
## 2189 2120 DH JFK IAD 0 3 0
## 2190 2120 DH EWR IAD 0 3 0
## 2191 2120 DH LGA IAD 0 4 0
## 2192 2120 DH JFK IAD 0 4 0
## 2193 2120 DH EWR IAD 0 4 1
## 2194 2120 DH LGA IAD 0 5 0
## 2195 2120 DH JFK IAD 0 5 1
## 2196 2120 DH EWR IAD 0 5 0
## 2197 2120 DH LGA IAD 0 6 0
## 2198 2120 DH JFK IAD 0 6 0
## 2199 2120 DH EWR IAD 0 6 0
## 2200 2130 RU EWR DCA 0 7 0
## 2201 2130 RU EWR DCA 0 7 1
## bin_fd
## 1 1
## 2 1
## 3 1
## 4 1
## 5 1
## 6 1
## 7 1
## 8 1
## 9 1
## 10 1
## 11 1
## 12 1
## 13 1
## 14 1
## 15 1
## 16 1
## 17 1
## 18 1
## 19 1
## 20 1
## 21 1
## 22 1
## 23 1
## 24 1
## 25 1
## 26 1
## 27 1
## 28 1
## 29 1
## 30 1
## 31 1
## 32 1
## 33 1
## 34 1
## 35 1
## 36 1
## 37 1
## 38 1
## 39 1
## 40 1
## 41 1
## 42 1
## 43 1
## 44 1
## 45 1
## 46 1
## 47 1
## 48 1
## 49 1
## 50 1
## 51 1
## 52 1
## 53 1
## 54 1
## 55 1
## 56 1
## 57 1
## 58 1
## 59 1
## 60 1
## 61 1
## 62 1
## 63 1
## 64 1
## 65 1
## 66 1
## 67 1
## 68 1
## 69 1
## 70 1
## 71 1
## 72 1
## 73 1
## 74 1
## 75 1
## 76 1
## 77 1
## 78 1
## 79 1
## 80 1
## 81 1
## 82 1
## 83 1
## 84 1
## 85 1
## 86 1
## 87 1
## 88 1
## 89 1
## 90 1
## 91 1
## 92 1
## 93 1
## 94 1
## 95 1
## 96 1
## 97 1
## 98 1
## 99 1
## 100 1
## 101 1
## 102 1
## 103 1
## 104 1
## 105 1
## 106 1
## 107 1
## 108 1
## 109 1
## 110 1
## 111 1
## 112 1
## 113 1
## 114 1
## 115 1
## 116 1
## 117 1
## 118 1
## 119 1
## 120 1
## 121 1
## 122 1
## 123 1
## 124 1
## 125 1
## 126 1
## 127 1
## 128 1
## 129 1
## 130 1
## 131 1
## 132 1
## 133 1
## 134 1
## 135 1
## 136 1
## 137 1
## 138 1
## 139 1
## 140 1
## 141 1
## 142 1
## 143 1
## 144 1
## 145 1
## 146 1
## 147 1
## 148 1
## 149 1
## 150 1
## 151 1
## 152 1
## 153 1
## 154 1
## 155 1
## 156 1
## 157 1
## 158 1
## 159 1
## 160 1
## 161 1
## 162 1
## 163 1
## 164 1
## 165 1
## 166 1
## 167 1
## 168 1
## 169 1
## 170 1
## 171 1
## 172 1
## 173 1
## 174 1
## 175 1
## 176 1
## 177 1
## 178 1
## 179 1
## 180 1
## 181 1
## 182 1
## 183 1
## 184 1
## 185 1
## 186 1
## 187 1
## 188 1
## 189 1
## 190 1
## 191 1
## 192 1
## 193 1
## 194 1
## 195 1
## 196 1
## 197 1
## 198 1
## 199 1
## 200 1
## 201 1
## 202 1
## 203 1
## 204 1
## 205 1
## 206 1
## 207 1
## 208 1
## 209 1
## 210 1
## 211 1
## 212 1
## 213 1
## 214 1
## 215 1
## 216 1
## 217 1
## 218 1
## 219 1
## 220 1
## 221 1
## 222 1
## 223 1
## 224 1
## 225 1
## 226 1
## 227 1
## 228 1
## 229 1
## 230 1
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
## 236 1
## 237 1
## 238 1
## 239 1
## 240 1
## 241 1
## 242 1
## 243 1
## 244 1
## 245 1
## 246 1
## 247 1
## 248 1
## 249 1
## 250 1
## 251 1
## 252 1
## 253 1
## 254 1
## 255 1
## 256 1
## 257 1
## 258 1
## 259 1
## 260 1
## 261 1
## 262 1
## 263 1
## 264 1
## 265 1
## 266 1
## 267 1
## 268 1
## 269 1
## 270 1
## 271 1
## 272 1
## 273 1
## 274 1
## 275 1
## 276 1
## 277 1
## 278 1
## 279 1
## 280 1
## 281 1
## 282 1
## 283 1
## 284 1
## 285 1
## 286 1
## 287 1
## 288 1
## 289 1
## 290 1
## 291 1
## 292 1
## 293 1
## 294 1
## 295 1
## 296 1
## 297 1
## 298 1
## 299 1
## 300 1
## 301 1
## 302 1
## 303 1
## 304 1
## 305 1
## 306 1
## 307 1
## 308 1
## 309 1
## 310 1
## 311 1
## 312 1
## 313 1
## 314 1
## 315 1
## 316 1
## 317 1
## 318 1
## 319 1
## 320 1
## 321 1
## 322 1
## 323 1
## 324 1
## 325 1
## 326 1
## 327 1
## 328 1
## 329 1
## 330 1
## 331 1
## 332 1
## 333 1
## 334 1
## 335 1
## 336 1
## 337 1
## 338 1
## 339 1
## 340 1
## 341 1
## 342 1
## 343 1
## 344 1
## 345 1
## 346 1
## 347 1
## 348 1
## 349 1
## 350 1
## 351 1
## 352 1
## 353 1
## 354 1
## 355 1
## 356 1
## 357 1
## 358 1
## 359 1
## 360 1
## 361 1
## 362 1
## 363 1
## 364 1
## 365 1
## 366 1
## 367 1
## 368 1
## 369 1
## 370 1
## 371 1
## 372 1
## 373 1
## 374 1
## 375 1
## 376 1
## 377 1
## 378 1
## 379 1
## 380 1
## 381 1
## 382 1
## 383 1
## 384 1
## 385 1
## 386 1
## 387 1
## 388 1
## 389 1
## 390 1
## 391 1
## 392 1
## 393 1
## 394 1
## 395 1
## 396 1
## 397 1
## 398 1
## 399 1
## 400 1
## 401 1
## 402 1
## 403 1
## 404 1
## 405 1
## 406 1
## 407 1
## 408 1
## 409 1
## 410 1
## 411 1
## 412 1
## 413 1
## 414 1
## 415 1
## 416 1
## 417 1
## 418 1
## 419 1
## 420 1
## 421 1
## 422 1
## 423 1
## 424 1
## 425 1
## 426 1
## 427 1
## 428 1
## 429 1
## 430 1
## 431 1
## 432 1
## 433 1
## 434 1
## 435 1
## 436 1
## 437 1
## 438 1
## 439 1
## 440 1
## 441 1
## 442 1
## 443 1
## 444 1
## 445 1
## 446 1
## 447 1
## 448 1
## 449 1
## 450 1
## 451 1
## 452 1
## 453 1
## 454 1
## 455 1
## 456 1
## 457 1
## 458 1
## 459 1
## 460 1
## 461 1
## 462 1
## 463 1
## 464 1
## 465 1
## 466 1
## 467 1
## 468 1
## 469 1
## 470 1
## 471 1
## 472 1
## 473 1
## 474 1
## 475 1
## 476 1
## 477 1
## 478 1
## 479 1
## 480 1
## 481 1
## 482 1
## 483 1
## 484 1
## 485 1
## 486 1
## 487 1
## 488 1
## 489 1
## 490 1
## 491 1
## 492 1
## 493 1
## 494 1
## 495 1
## 496 1
## 497 1
## 498 1
## 499 1
## 500 1
## 501 1
## 502 1
## 503 1
## 504 1
## 505 1
## 506 1
## 507 1
## 508 1
## 509 1
## 510 1
## 511 1
## 512 1
## 513 1
## 514 1
## 515 1
## 516 1
## 517 1
## 518 1
## 519 1
## 520 1
## 521 1
## 522 1
## 523 1
## 524 1
## 525 1
## 526 1
## 527 1
## 528 1
## 529 1
## 530 1
## 531 1
## 532 1
## 533 1
## 534 1
## 535 1
## 536 1
## 537 1
## 538 1
## 539 1
## 540 1
## 541 1
## 542 1
## 543 1
## 544 1
## 545 1
## 546 1
## 547 1
## 548 1
## 549 1
## 550 1
## 551 1
## 552 1
## 553 1
## 554 1
## 555 1
## 556 1
## 557 1
## 558 1
## 559 1
## 560 1
## 561 1
## 562 1
## 563 1
## 564 1
## 565 1
## 566 1
## 567 1
## 568 1
## 569 1
## 570 1
## 571 1
## 572 1
## 573 1
## 574 1
## 575 1
## 576 1
## 577 1
## 578 1
## 579 1
## 580 1
## 581 1
## 582 1
## 583 1
## 584 1
## 585 1
## 586 1
## 587 1
## 588 1
## 589 1
## 590 1
## 591 1
## 592 1
## 593 1
## 594 1
## 595 1
## 596 1
## 597 1
## 598 1
## 599 1
## 600 1
## 601 1
## 602 1
## 603 1
## 604 1
## 605 1
## 606 1
## 607 1
## 608 1
## 609 1
## 610 1
## 611 1
## 612 1
## 613 1
## 614 1
## 615 1
## 616 1
## 617 1
## 618 1
## 619 1
## 620 1
## 621 1
## 622 1
## 623 1
## 624 1
## 625 1
## 626 1
## 627 1
## 628 1
## 629 1
## 630 1
## 631 1
## 632 1
## 633 1
## 634 1
## 635 1
## 636 1
## 637 1
## 638 1
## 639 1
## 640 1
## 641 1
## 642 1
## 643 1
## 644 1
## 645 1
## 646 1
## 647 1
## 648 1
## 649 1
## 650 1
## 651 1
## 652 1
## 653 1
## 654 1
## 655 1
## 656 1
## 657 1
## 658 1
## 659 1
## 660 1
## 661 1
## 662 1
## 663 1
## 664 1
## 665 1
## 666 1
## 667 1
## 668 1
## 669 1
## 670 1
## 671 1
## 672 1
## 673 1
## 674 1
## 675 1
## 676 1
## 677 1
## 678 1
## 679 1
## 680 1
## 681 1
## 682 1
## 683 1
## 684 1
## 685 1
## 686 1
## 687 1
## 688 1
## 689 1
## 690 1
## 691 1
## 692 1
## 693 1
## 694 1
## 695 1
## 696 1
## 697 1
## 698 1
## 699 1
## 700 2
## 701 2
## 702 2
## 703 2
## 704 2
## 705 2
## 706 2
## 707 2
## 708 2
## 709 2
## 710 2
## 711 2
## 712 2
## 713 2
## 714 2
## 715 2
## 716 2
## 717 2
## 718 2
## 719 2
## 720 2
## 721 2
## 722 2
## 723 2
## 724 2
## 725 2
## 726 2
## 727 2
## 728 2
## 729 2
## 730 2
## 731 2
## 732 2
## 733 2
## 734 2
## 735 2
## 736 2
## 737 2
## 738 2
## 739 2
## 740 2
## 741 2
## 742 2
## 743 2
## 744 2
## 745 2
## 746 2
## 747 2
## 748 2
## 749 2
## 750 2
## 751 2
## 752 2
## 753 2
## 754 2
## 755 2
## 756 2
## 757 2
## 758 2
## 759 2
## 760 2
## 761 2
## 762 2
## 763 2
## 764 2
## 765 2
## 766 2
## 767 2
## 768 2
## 769 2
## 770 2
## 771 2
## 772 2
## 773 2
## 774 2
## 775 2
## 776 2
## 777 2
## 778 2
## 779 2
## 780 2
## 781 2
## 782 2
## 783 2
## 784 2
## 785 2
## 786 2
## 787 2
## 788 2
## 789 2
## 790 2
## 791 2
## 792 2
## 793 2
## 794 2
## 795 2
## 796 2
## 797 2
## 798 2
## 799 2
## 800 2
## 801 2
## 802 2
## 803 2
## 804 2
## 805 2
## 806 2
## 807 2
## 808 2
## 809 2
## 810 2
## 811 2
## 812 2
## 813 2
## 814 2
## 815 2
## 816 2
## 817 2
## 818 2
## 819 2
## 820 2
## 821 2
## 822 2
## 823 2
## 824 2
## 825 2
## 826 2
## 827 2
## 828 2
## 829 2
## 830 2
## 831 2
## 832 2
## 833 2
## 834 2
## 835 2
## 836 2
## 837 2
## 838 2
## 839 2
## 840 2
## 841 2
## 842 3
## 843 3
## 844 3
## 845 3
## 846 3
## 847 3
## 848 3
## 849 3
## 850 3
## 851 3
## 852 3
## 853 3
## 854 3
## 855 3
## 856 3
## 857 3
## 858 3
## 859 3
## 860 3
## 861 3
## 862 3
## 863 3
## 864 3
## 865 3
## 866 3
## 867 3
## 868 3
## 869 3
## 870 3
## 871 3
## 872 3
## 873 3
## 874 3
## 875 3
## 876 3
## 877 3
## 878 3
## 879 3
## 880 3
## 881 3
## 882 3
## 883 3
## 884 3
## 885 3
## 886 3
## 887 3
## 888 3
## 889 3
## 890 3
## 891 3
## 892 3
## 893 3
## 894 3
## 895 3
## 896 3
## 897 3
## 898 3
## 899 3
## 900 3
## 901 3
## 902 3
## 903 3
## 904 3
## 905 3
## 906 3
## 907 3
## 908 3
## 909 3
## 910 3
## 911 3
## 912 3
## 913 3
## 914 3
## 915 3
## 916 3
## 917 3
## 918 3
## 919 3
## 920 3
## 921 3
## 922 3
## 923 3
## 924 3
## 925 3
## 926 3
## 927 3
## 928 3
## 929 3
## 930 3
## 931 3
## 932 3
## 933 3
## 934 3
## 935 3
## 936 3
## 937 3
## 938 3
## 939 3
## 940 3
## 941 3
## 942 3
## 943 3
## 944 3
## 945 3
## 946 3
## 947 3
## 948 3
## 949 3
## 950 3
## 951 3
## 952 3
## 953 3
## 954 3
## 955 3
## 956 3
## 957 3
## 958 3
## 959 3
## 960 3
## 961 3
## 962 3
## 963 3
## 964 3
## 965 3
## 966 3
## 967 3
## 968 3
## 969 3
## 970 3
## 971 3
## 972 3
## 973 3
## 974 3
## 975 3
## 976 3
## 977 3
## 978 3
## 979 3
## 980 3
## 981 3
## 982 3
## 983 3
## 984 3
## 985 3
## 986 3
## 987 3
## 988 3
## 989 3
## 990 3
## 991 3
## 992 3
## 993 3
## 994 3
## 995 3
## 996 3
## 997 3
## 998 3
## 999 4
## 1000 4
## 1001 4
## 1002 4
## 1003 4
## 1004 4
## 1005 4
## 1006 4
## 1007 4
## 1008 4
## 1009 4
## 1010 4
## 1011 4
## 1012 4
## 1013 4
## 1014 4
## 1015 4
## 1016 4
## 1017 4
## 1018 4
## 1019 4
## 1020 4
## 1021 4
## 1022 4
## 1023 4
## 1024 4
## 1025 4
## 1026 4
## 1027 4
## 1028 4
## 1029 4
## 1030 4
## 1031 4
## 1032 4
## 1033 4
## 1034 4
## 1035 4
## 1036 4
## 1037 4
## 1038 4
## 1039 4
## 1040 4
## 1041 4
## 1042 4
## 1043 4
## 1044 4
## 1045 4
## 1046 4
## 1047 4
## 1048 4
## 1049 4
## 1050 4
## 1051 4
## 1052 4
## 1053 4
## 1054 4
## 1055 4
## 1056 4
## 1057 4
## 1058 4
## 1059 4
## 1060 4
## 1061 4
## 1062 4
## 1063 4
## 1064 4
## 1065 4
## 1066 4
## 1067 4
## 1068 4
## 1069 4
## 1070 4
## 1071 4
## 1072 4
## 1073 4
## 1074 4
## 1075 4
## 1076 4
## 1077 4
## 1078 4
## 1079 4
## 1080 4
## 1081 4
## 1082 4
## 1083 4
## 1084 4
## 1085 4
## 1086 4
## 1087 4
## 1088 4
## 1089 4
## 1090 4
## 1091 4
## 1092 4
## 1093 4
## 1094 4
## 1095 4
## 1096 4
## 1097 4
## 1098 4
## 1099 4
## 1100 4
## 1101 4
## 1102 4
## 1103 4
## 1104 4
## 1105 4
## 1106 4
## 1107 4
## 1108 4
## 1109 4
## 1110 4
## 1111 4
## 1112 4
## 1113 4
## 1114 4
## 1115 4
## 1116 4
## 1117 4
## 1118 4
## 1119 4
## 1120 4
## 1121 4
## 1122 4
## 1123 4
## 1124 4
## 1125 4
## 1126 4
## 1127 4
## 1128 4
## 1129 4
## 1130 4
## 1131 4
## 1132 4
## 1133 4
## 1134 4
## 1135 4
## 1136 4
## 1137 4
## 1138 4
## 1139 4
## 1140 4
## 1141 4
## 1142 4
## 1143 4
## 1144 4
## 1145 4
## 1146 4
## 1147 4
## 1148 4
## 1149 4
## 1150 4
## 1151 4
## 1152 4
## 1153 4
## 1154 4
## 1155 4
## 1156 4
## 1157 4
## 1158 4
## 1159 4
## 1160 4
## 1161 4
## 1162 4
## 1163 4
## 1164 4
## 1165 4
## 1166 4
## 1167 4
## 1168 4
## 1169 4
## 1170 4
## 1171 4
## 1172 4
## 1173 4
## 1174 4
## 1175 4
## 1176 4
## 1177 4
## 1178 4
## 1179 4
## 1180 4
## 1181 4
## 1182 4
## 1183 4
## 1184 4
## 1185 4
## 1186 4
## 1187 4
## 1188 4
## 1189 4
## 1190 4
## 1191 4
## 1192 4
## 1193 4
## 1194 4
## 1195 4
## 1196 4
## 1197 4
## 1198 4
## 1199 4
## 1200 4
## 1201 4
## 1202 4
## 1203 4
## 1204 4
## 1205 4
## 1206 4
## 1207 4
## 1208 4
## 1209 4
## 1210 4
## 1211 4
## 1212 4
## 1213 4
## 1214 4
## 1215 4
## 1216 4
## 1217 4
## 1218 4
## 1219 4
## 1220 4
## 1221 4
## 1222 4
## 1223 4
## 1224 4
## 1225 4
## 1226 4
## 1227 4
## 1228 4
## 1229 4
## 1230 4
## 1231 4
## 1232 4
## 1233 4
## 1234 4
## 1235 5
## 1236 5
## 1237 5
## 1238 5
## 1239 5
## 1240 5
## 1241 5
## 1242 5
## 1243 5
## 1244 5
## 1245 5
## 1246 5
## 1247 5
## 1248 5
## 1249 5
## 1250 5
## 1251 5
## 1252 5
## 1253 5
## 1254 5
## 1255 5
## 1256 5
## 1257 5
## 1258 5
## 1259 5
## 1260 5
## 1261 5
## 1262 5
## 1263 5
## 1264 5
## 1265 5
## 1266 5
## 1267 5
## 1268 5
## 1269 5
## 1270 5
## 1271 5
## 1272 5
## 1273 5
## 1274 5
## 1275 5
## 1276 5
## 1277 5
## 1278 5
## 1279 5
## 1280 5
## 1281 5
## 1282 5
## 1283 5
## 1284 5
## 1285 5
## 1286 5
## 1287 5
## 1288 5
## 1289 5
## 1290 5
## 1291 5
## 1292 5
## 1293 5
## 1294 5
## 1295 5
## 1296 5
## 1297 5
## 1298 5
## 1299 5
## 1300 5
## 1301 5
## 1302 5
## 1303 5
## 1304 5
## 1305 5
## 1306 5
## 1307 5
## 1308 5
## 1309 5
## 1310 5
## 1311 5
## 1312 5
## 1313 5
## 1314 5
## 1315 5
## 1316 5
## 1317 5
## 1318 5
## 1319 5
## 1320 5
## 1321 5
## 1322 5
## 1323 5
## 1324 5
## 1325 5
## 1326 5
## 1327 5
## 1328 5
## 1329 5
## 1330 5
## 1331 5
## 1332 5
## 1333 5
## 1334 5
## 1335 5
## 1336 5
## 1337 5
## 1338 5
## 1339 5
## 1340 5
## 1341 5
## 1342 5
## 1343 5
## 1344 5
## 1345 5
## 1346 5
## 1347 5
## 1348 5
## 1349 5
## 1350 5
## 1351 5
## 1352 5
## 1353 5
## 1354 5
## 1355 5
## 1356 5
## 1357 5
## 1358 5
## 1359 5
## 1360 5
## 1361 5
## 1362 5
## 1363 5
## 1364 5
## 1365 5
## 1366 5
## 1367 5
## 1368 5
## 1369 5
## 1370 5
## 1371 5
## 1372 5
## 1373 5
## 1374 5
## 1375 5
## 1376 5
## 1377 5
## 1378 5
## 1379 5
## 1380 5
## 1381 5
## 1382 5
## 1383 5
## 1384 5
## 1385 5
## 1386 5
## 1387 5
## 1388 5
## 1389 6
## 1390 6
## 1391 6
## 1392 6
## 1393 6
## 1394 6
## 1395 6
## 1396 6
## 1397 6
## 1398 6
## 1399 6
## 1400 6
## 1401 6
## 1402 6
## 1403 6
## 1404 6
## 1405 6
## 1406 6
## 1407 6
## 1408 6
## 1409 6
## 1410 6
## 1411 6
## 1412 6
## 1413 6
## 1414 6
## 1415 6
## 1416 6
## 1417 6
## 1418 6
## 1419 6
## 1420 6
## 1421 6
## 1422 6
## 1423 6
## 1424 6
## 1425 6
## 1426 6
## 1427 6
## 1428 6
## 1429 6
## 1430 6
## 1431 6
## 1432 6
## 1433 6
## 1434 6
## 1435 6
## 1436 6
## 1437 6
## 1438 6
## 1439 6
## 1440 6
## 1441 6
## 1442 6
## 1443 6
## 1444 6
## 1445 6
## 1446 6
## 1447 6
## 1448 6
## 1449 6
## 1450 6
## 1451 6
## 1452 6
## 1453 6
## 1454 6
## 1455 6
## 1456 6
## 1457 6
## 1458 6
## 1459 6
## 1460 6
## 1461 6
## 1462 6
## 1463 6
## 1464 6
## 1465 6
## 1466 6
## 1467 6
## 1468 6
## 1469 6
## 1470 6
## 1471 6
## 1472 6
## 1473 6
## 1474 6
## 1475 6
## 1476 6
## 1477 6
## 1478 6
## 1479 6
## 1480 6
## 1481 6
## 1482 6
## 1483 6
## 1484 6
## 1485 6
## 1486 6
## 1487 6
## 1488 6
## 1489 6
## 1490 6
## 1491 6
## 1492 6
## 1493 6
## 1494 6
## 1495 6
## 1496 6
## 1497 6
## 1498 6
## 1499 6
## 1500 6
## 1501 6
## 1502 6
## 1503 6
## 1504 6
## 1505 6
## 1506 6
## 1507 6
## 1508 6
## 1509 6
## 1510 6
## 1511 6
## 1512 6
## 1513 6
## 1514 6
## 1515 6
## 1516 6
## 1517 6
## 1518 6
## 1519 6
## 1520 6
## 1521 6
## 1522 6
## 1523 6
## 1524 6
## 1525 6
## 1526 6
## 1527 6
## 1528 6
## 1529 6
## 1530 6
## 1531 6
## 1532 6
## 1533 6
## 1534 6
## 1535 6
## 1536 6
## 1537 6
## 1538 6
## 1539 6
## 1540 6
## 1541 6
## 1542 6
## 1543 6
## 1544 6
## 1545 6
## 1546 6
## 1547 6
## 1548 6
## 1549 6
## 1550 6
## 1551 6
## 1552 6
## 1553 6
## 1554 6
## 1555 6
## 1556 6
## 1557 6
## 1558 6
## 1559 6
## 1560 6
## 1561 6
## 1562 6
## 1563 6
## 1564 6
## 1565 6
## 1566 6
## 1567 7
## 1568 7
## 1569 7
## 1570 7
## 1571 7
## 1572 7
## 1573 7
## 1574 7
## 1575 7
## 1576 7
## 1577 7
## 1578 7
## 1579 7
## 1580 7
## 1581 7
## 1582 7
## 1583 7
## 1584 7
## 1585 7
## 1586 7
## 1587 7
## 1588 7
## 1589 7
## 1590 7
## 1591 7
## 1592 7
## 1593 7
## 1594 7
## 1595 7
## 1596 7
## 1597 7
## 1598 7
## 1599 7
## 1600 7
## 1601 7
## 1602 7
## 1603 7
## 1604 7
## 1605 7
## 1606 7
## 1607 7
## 1608 7
## 1609 7
## 1610 7
## 1611 7
## 1612 7
## 1613 7
## 1614 7
## 1615 7
## 1616 7
## 1617 7
## 1618 7
## 1619 7
## 1620 7
## 1621 7
## 1622 7
## 1623 7
## 1624 7
## 1625 7
## 1626 7
## 1627 7
## 1628 7
## 1629 7
## 1630 7
## 1631 7
## 1632 7
## 1633 7
## 1634 7
## 1635 7
## 1636 7
## 1637 7
## 1638 7
## 1639 7
## 1640 7
## 1641 7
## 1642 7
## 1643 7
## 1644 7
## 1645 7
## 1646 7
## 1647 7
## 1648 7
## 1649 7
## 1650 7
## 1651 7
## 1652 7
## 1653 7
## 1654 7
## 1655 7
## 1656 7
## 1657 7
## 1658 7
## 1659 7
## 1660 7
## 1661 7
## 1662 7
## 1663 7
## 1664 7
## 1665 7
## 1666 7
## 1667 7
## 1668 7
## 1669 7
## 1670 7
## 1671 7
## 1672 7
## 1673 7
## 1674 7
## 1675 7
## 1676 7
## 1677 7
## 1678 7
## 1679 7
## 1680 7
## 1681 7
## 1682 7
## 1683 7
## 1684 7
## 1685 7
## 1686 7
## 1687 7
## 1688 7
## 1689 7
## 1690 7
## 1691 7
## 1692 7
## 1693 7
## 1694 7
## 1695 7
## 1696 7
## 1697 7
## 1698 7
## 1699 7
## 1700 7
## 1701 7
## 1702 7
## 1703 7
## 1704 7
## 1705 7
## 1706 7
## 1707 7
## 1708 7
## 1709 7
## 1710 7
## 1711 7
## 1712 7
## 1713 7
## 1714 7
## 1715 7
## 1716 7
## 1717 7
## 1718 7
## 1719 7
## 1720 7
## 1721 7
## 1722 7
## 1723 7
## 1724 7
## 1725 7
## 1726 7
## 1727 7
## 1728 7
## 1729 7
## 1730 7
## 1731 7
## 1732 7
## 1733 7
## 1734 7
## 1735 7
## 1736 7
## 1737 7
## 1738 7
## 1739 7
## 1740 7
## 1741 7
## 1742 7
## 1743 7
## 1744 7
## 1745 7
## 1746 7
## 1747 7
## 1748 7
## 1749 7
## 1750 7
## 1751 7
## 1752 7
## 1753 7
## 1754 7
## 1755 7
## 1756 7
## 1757 7
## 1758 7
## 1759 7
## 1760 7
## 1761 7
## 1762 7
## 1763 7
## 1764 7
## 1765 7
## 1766 7
## 1767 7
## 1768 7
## 1769 7
## 1770 7
## 1771 7
## 1772 7
## 1773 7
## 1774 7
## 1775 7
## 1776 7
## 1777 7
## 1778 7
## 1779 7
## 1780 7
## 1781 7
## 1782 7
## 1783 7
## 1784 7
## 1785 7
## 1786 7
## 1787 7
## 1788 7
## 1789 7
## 1790 7
## 1791 7
## 1792 7
## 1793 7
## 1794 7
## 1795 7
## 1796 7
## 1797 7
## 1798 7
## 1799 7
## 1800 7
## 1801 7
## 1802 7
## 1803 7
## 1804 7
## 1805 7
## 1806 7
## 1807 7
## 1808 8
## 1809 8
## 1810 8
## 1811 8
## 1812 8
## 1813 8
## 1814 8
## 1815 8
## 1816 8
## 1817 8
## 1818 8
## 1819 8
## 1820 8
## 1821 8
## 1822 8
## 1823 8
## 1824 8
## 1825 8
## 1826 8
## 1827 8
## 1828 8
## 1829 8
## 1830 8
## 1831 8
## 1832 8
## 1833 8
## 1834 8
## 1835 8
## 1836 8
## 1837 8
## 1838 8
## 1839 8
## 1840 8
## 1841 8
## 1842 8
## 1843 8
## 1844 8
## 1845 8
## 1846 8
## 1847 8
## 1848 8
## 1849 8
## 1850 8
## 1851 8
## 1852 8
## 1853 8
## 1854 8
## 1855 8
## 1856 8
## 1857 8
## 1858 8
## 1859 8
## 1860 8
## 1861 8
## 1862 8
## 1863 8
## 1864 8
## 1865 8
## 1866 8
## 1867 8
## 1868 8
## 1869 8
## 1870 8
## 1871 8
## 1872 8
## 1873 8
## 1874 8
## 1875 8
## 1876 8
## 1877 8
## 1878 8
## 1879 8
## 1880 8
## 1881 8
## 1882 8
## 1883 8
## 1884 8
## 1885 8
## 1886 8
## 1887 8
## 1888 8
## 1889 8
## 1890 8
## 1891 8
## 1892 8
## 1893 9
## 1894 9
## 1895 9
## 1896 9
## 1897 9
## 1898 9
## 1899 9
## 1900 9
## 1901 9
## 1902 9
## 1903 9
## 1904 9
## 1905 9
## 1906 9
## 1907 9
## 1908 9
## 1909 9
## 1910 9
## 1911 9
## 1912 9
## 1913 9
## 1914 9
## 1915 9
## 1916 9
## 1917 9
## 1918 9
## 1919 9
## 1920 9
## 1921 9
## 1922 9
## 1923 9
## 1924 9
## 1925 9
## 1926 9
## 1927 9
## 1928 9
## 1929 9
## 1930 9
## 1931 9
## 1932 9
## 1933 9
## 1934 9
## 1935 9
## 1936 9
## 1937 9
## 1938 9
## 1939 9
## 1940 9
## 1941 9
## 1942 9
## 1943 9
## 1944 9
## 1945 9
## 1946 9
## 1947 9
## 1948 9
## 1949 9
## 1950 9
## 1951 9
## 1952 9
## 1953 9
## 1954 9
## 1955 9
## 1956 9
## 1957 9
## 1958 9
## 1959 9
## 1960 9
## 1961 9
## 1962 9
## 1963 9
## 1964 9
## 1965 9
## 1966 9
## 1967 9
## 1968 9
## 1969 9
## 1970 9
## 1971 9
## 1972 9
## 1973 9
## 1974 9
## 1975 9
## 1976 9
## 1977 9
## 1978 9
## 1979 9
## 1980 9
## 1981 9
## 1982 9
## 1983 9
## 1984 9
## 1985 9
## 1986 9
## 1987 9
## 1988 9
## 1989 9
## 1990 9
## 1991 9
## 1992 9
## 1993 9
## 1994 9
## 1995 9
## 1996 9
## 1997 9
## 1998 9
## 1999 9
## 2000 9
## 2001 9
## 2002 9
## 2003 9
## 2004 9
## 2005 9
## 2006 9
## 2007 9
## 2008 9
## 2009 9
## 2010 9
## 2011 9
## 2012 10
## 2013 10
## 2014 10
## 2015 10
## 2016 10
## 2017 10
## 2018 10
## 2019 10
## 2020 10
## 2021 10
## 2022 10
## 2023 10
## 2024 10
## 2025 10
## 2026 10
## 2027 10
## 2028 10
## 2029 10
## 2030 10
## 2031 10
## 2032 10
## 2033 10
## 2034 10
## 2035 10
## 2036 10
## 2037 10
## 2038 10
## 2039 10
## 2040 10
## 2041 10
## 2042 10
## 2043 10
## 2044 10
## 2045 10
## 2046 10
## 2047 10
## 2048 10
## 2049 10
## 2050 10
## 2051 10
## 2052 10
## 2053 10
## 2054 10
## 2055 10
## 2056 10
## 2057 10
## 2058 10
## 2059 10
## 2060 10
## 2061 10
## 2062 10
## 2063 10
## 2064 10
## 2065 <NA>
## 2066 <NA>
## 2067 <NA>
## 2068 <NA>
## 2069 <NA>
## 2070 <NA>
## 2071 <NA>
## 2072 <NA>
## 2073 <NA>
## 2074 <NA>
## 2075 <NA>
## 2076 <NA>
## 2077 <NA>
## 2078 <NA>
## 2079 <NA>
## 2080 <NA>
## 2081 <NA>
## 2082 <NA>
## 2083 <NA>
## 2084 <NA>
## 2085 <NA>
## 2086 <NA>
## 2087 <NA>
## 2088 <NA>
## 2089 <NA>
## 2090 <NA>
## 2091 <NA>
## 2092 <NA>
## 2093 <NA>
## 2094 <NA>
## 2095 <NA>
## 2096 <NA>
## 2097 <NA>
## 2098 <NA>
## 2099 <NA>
## 2100 <NA>
## 2101 <NA>
## 2102 <NA>
## 2103 <NA>
## 2104 <NA>
## 2105 <NA>
## 2106 <NA>
## 2107 <NA>
## 2108 <NA>
## 2109 <NA>
## 2110 <NA>
## 2111 <NA>
## 2112 <NA>
## 2113 <NA>
## 2114 <NA>
## 2115 <NA>
## 2116 <NA>
## 2117 <NA>
## 2118 <NA>
## 2119 <NA>
## 2120 <NA>
## 2121 <NA>
## 2122 <NA>
## 2123 <NA>
## 2124 <NA>
## 2125 <NA>
## 2126 <NA>
## 2127 <NA>
## 2128 <NA>
## 2129 <NA>
## 2130 <NA>
## 2131 <NA>
## 2132 <NA>
## 2133 <NA>
## 2134 <NA>
## 2135 <NA>
## 2136 <NA>
## 2137 <NA>
## 2138 <NA>
## 2139 <NA>
## 2140 <NA>
## 2141 <NA>
## 2142 <NA>
## 2143 <NA>
## 2144 <NA>
## 2145 <NA>
## 2146 <NA>
## 2147 <NA>
## 2148 <NA>
## 2149 <NA>
## 2150 <NA>
## 2151 <NA>
## 2152 <NA>
## 2153 <NA>
## 2154 <NA>
## 2155 <NA>
## 2156 <NA>
## 2157 <NA>
## 2158 <NA>
## 2159 <NA>
## 2160 <NA>
## 2161 <NA>
## 2162 <NA>
## 2163 <NA>
## 2164 <NA>
## 2165 <NA>
## 2166 <NA>
## 2167 <NA>
## 2168 <NA>
## 2169 <NA>
## 2170 <NA>
## 2171 <NA>
## 2172 <NA>
## 2173 <NA>
## 2174 <NA>
## 2175 <NA>
## 2176 <NA>
## 2177 <NA>
## 2178 <NA>
## 2179 <NA>
## 2180 <NA>
## 2181 <NA>
## 2182 <NA>
## 2183 <NA>
## 2184 <NA>
## 2185 <NA>
## 2186 <NA>
## 2187 <NA>
## 2188 <NA>
## 2189 <NA>
## 2190 <NA>
## 2191 <NA>
## 2192 <NA>
## 2193 <NA>
## 2194 <NA>
## 2195 <NA>
## 2196 <NA>
## 2197 <NA>
## 2198 <NA>
## 2199 <NA>
## 2200 <NA>
## 2201 <NA>
as.factor(fd$CRS_DEP_TIME)->fd$CRS_DEP_TIME
as(fd,"transactions")->trans1
trans1
## transactions in sparse format with
## 2201 transactions (rows) and
## 94 items (columns)
image(trans1)
fd
## CRS_DEP_TIME CARRIER DEST ORIGIN Weather DAY_WEEK Flight.Status
## 1 600 MQ JFK DCA 0 4 0
## 2 600 MQ JFK DCA 0 5 0
## 3 600 MQ JFK DCA 0 6 0
## 4 600 MQ JFK DCA 0 7 0
## 5 600 MQ JFK DCA 0 1 0
## 6 600 MQ JFK DCA 0 2 0
## 7 600 MQ JFK DCA 0 3 0
## 8 600 MQ JFK DCA 0 4 0
## 9 600 MQ JFK DCA 0 5 0
## 10 600 MQ JFK DCA 0 6 1
## 11 600 MQ JFK DCA 0 7 0
## 12 600 MQ JFK DCA 0 1 0
## 13 600 MQ JFK DCA 0 2 0
## 14 600 MQ JFK DCA 0 3 0
## 15 600 MQ JFK DCA 0 4 0
## 16 600 MQ JFK DCA 0 5 0
## 17 600 MQ JFK DCA 0 6 0
## 18 600 MQ JFK DCA 0 7 1
## 19 600 MQ JFK DCA 0 1 0
## 20 600 MQ JFK DCA 0 2 0
## 21 600 MQ JFK DCA 0 3 0
## 22 600 MQ JFK DCA 0 4 0
## 23 600 MQ JFK DCA 0 5 0
## 24 600 MQ JFK DCA 0 6 0
## 25 600 MQ JFK DCA 0 4 0
## 26 600 MQ JFK DCA 0 6 0
## 27 630 DH EWR IAD 0 5 0
## 28 630 DH EWR IAD 0 6 0
## 29 630 DL LGA DCA 0 1 0
## 30 630 US LGA DCA 0 1 1
## 31 630 DH EWR IAD 0 1 0
## 32 630 DL LGA DCA 0 2 0
## 33 630 US LGA DCA 0 2 0
## 34 630 DH EWR IAD 0 2 0
## 35 630 DL LGA DCA 0 3 0
## 36 630 US LGA DCA 0 3 0
## 37 630 DH EWR IAD 0 3 0
## 38 630 DL LGA DCA 0 4 0
## 39 630 US LGA DCA 0 4 0
## 40 630 DH EWR IAD 0 4 0
## 41 630 DL LGA DCA 0 5 0
## 42 630 US LGA DCA 0 5 0
## 43 630 DH EWR IAD 0 5 0
## 44 630 DL LGA DCA 0 1 0
## 45 630 US LGA DCA 0 1 0
## 46 630 DH EWR IAD 0 1 0
## 47 630 DL LGA DCA 0 2 0
## 48 630 US LGA DCA 0 2 0
## 49 630 DH EWR IAD 0 2 0
## 50 630 DL LGA DCA 0 3 0
## 51 630 US LGA DCA 0 3 0
## 52 630 DH EWR IAD 0 3 0
## 53 630 DL LGA DCA 0 4 0
## 54 630 US LGA DCA 0 4 1
## 55 630 DH EWR IAD 0 4 0
## 56 630 DL LGA DCA 0 5 0
## 57 630 US LGA DCA 0 5 0
## 58 630 DH EWR IAD 0 5 1
## 59 630 US LGA DCA 0 1 0
## 60 630 DH EWR IAD 0 1 0
## 61 630 DL LGA DCA 0 2 0
## 62 630 US LGA DCA 0 2 0
## 63 630 DH EWR IAD 0 2 0
## 64 630 DL LGA DCA 0 3 0
## 65 630 US LGA DCA 0 3 0
## 66 630 DH EWR IAD 0 3 0
## 67 630 DL LGA DCA 0 4 0
## 68 630 US LGA DCA 0 4 0
## 69 630 DH EWR IAD 0 4 0
## 70 630 DL LGA DCA 0 5 0
## 71 630 US LGA DCA 0 5 0
## 72 630 DH EWR IAD 0 5 0
## 73 630 US LGA DCA 0 1 1
## 74 630 DH EWR IAD 0 1 0
## 75 630 US LGA DCA 0 2 0
## 76 630 US LGA DCA 0 3 0
## 77 630 DH EWR IAD 0 3 0
## 78 630 DL LGA DCA 0 4 0
## 79 630 US LGA DCA 0 4 0
## 80 630 DH EWR IAD 0 4 0
## 81 630 DL LGA DCA 0 5 0
## 82 630 US LGA DCA 0 5 0
## 83 630 DH EWR IAD 0 5 0
## 84 640 DH LGA IAD 0 5 0
## 85 640 DH LGA IAD 0 6 0
## 86 640 DH LGA IAD 0 7 0
## 87 640 DH LGA IAD 0 1 1
## 88 640 DH LGA IAD 0 2 0
## 89 640 DH LGA IAD 0 3 0
## 90 640 DH LGA IAD 0 4 0
## 91 640 DH LGA IAD 0 5 1
## 92 640 DH LGA IAD 0 1 1
## 93 640 DH LGA IAD 0 2 1
## 94 640 DH LGA IAD 0 3 0
## 95 640 DH LGA IAD 0 5 0
## 96 640 DH LGA IAD 0 1 1
## 97 640 DH LGA IAD 0 2 0
## 98 640 DH LGA IAD 0 3 1
## 99 640 DH LGA IAD 0 4 0
## 100 640 DH LGA IAD 0 5 0
## 101 640 DH LGA IAD 0 1 1
## 102 640 DH LGA IAD 1 2 1
## 103 640 DH LGA IAD 0 3 0
## 104 640 DH LGA IAD 0 4 1
## 105 640 DH LGA IAD 0 5 0
## 106 645 RU EWR DCA 0 2 0
## 107 645 RU EWR DCA 0 3 0
## 108 645 RU EWR DCA 0 4 1
## 109 645 RU EWR DCA 0 5 0
## 110 645 RU EWR DCA 0 6 0
## 111 645 RU EWR DCA 0 1 0
## 112 645 RU EWR DCA 0 2 0
## 113 645 RU EWR DCA 0 3 0
## 114 645 RU EWR DCA 0 4 0
## 115 645 RU EWR DCA 0 5 0
## 116 645 RU EWR DCA 0 6 0
## 117 645 RU EWR DCA 0 1 0
## 118 645 RU EWR DCA 0 2 0
## 119 645 RU EWR DCA 0 3 0
## 120 645 RU EWR DCA 0 4 0
## 121 645 RU EWR DCA 0 5 0
## 122 645 RU EWR DCA 0 6 0
## 123 645 RU EWR DCA 0 2 0
## 124 645 RU EWR DCA 0 4 0
## 125 645 RU EWR DCA 0 5 0
## 126 645 RU EWR DCA 0 6 0
## 127 700 RU EWR BWI 0 4 0
## 128 700 US LGA DCA 0 5 0
## 129 700 RU EWR BWI 0 5 0
## 130 700 RU EWR IAD 0 5 0
## 131 700 RU EWR DCA 0 5 0
## 132 700 US LGA DCA 0 6 0
## 133 700 RU EWR BWI 0 6 0
## 134 700 RU EWR IAD 0 6 0
## 135 700 RU EWR DCA 0 6 0
## 136 700 MQ LGA DCA 0 1 0
## 137 700 US LGA DCA 0 1 0
## 138 700 RU EWR BWI 0 1 1
## 139 700 RU EWR DCA 0 1 0
## 140 700 RU EWR IAD 0 1 0
## 141 700 MQ LGA DCA 0 2 0
## 142 700 US LGA DCA 0 2 0
## 143 700 RU EWR BWI 0 2 0
## 144 700 RU EWR IAD 0 2 0
## 145 700 MQ LGA DCA 0 3 0
## 146 700 US LGA DCA 0 3 0
## 147 700 RU EWR BWI 0 3 0
## 148 700 RU EWR IAD 0 3 1
## 149 700 MQ LGA DCA 0 4 0
## 150 700 US LGA DCA 0 4 0
## 151 700 RU EWR BWI 0 4 0
## 152 700 RU EWR IAD 0 4 0
## 153 700 US LGA DCA 0 5 0
## 154 700 RU EWR BWI 0 5 0
## 155 700 RU EWR IAD 0 5 1
## 156 700 US LGA DCA 0 6 0
## 157 700 RU EWR BWI 0 6 0
## 158 700 RU EWR IAD 0 6 0
## 159 700 MQ LGA DCA 0 1 1
## 160 700 US LGA DCA 0 1 1
## 161 700 RU EWR BWI 0 1 0
## 162 700 RU EWR IAD 0 1 0
## 163 700 MQ LGA DCA 0 2 0
## 164 700 US LGA DCA 0 2 0
## 165 700 RU EWR BWI 0 2 0
## 166 700 RU EWR IAD 0 2 0
## 167 700 MQ LGA DCA 0 3 1
## 168 700 US LGA DCA 0 3 0
## 169 700 RU EWR BWI 0 3 0
## 170 700 RU EWR IAD 0 3 0
## 171 700 RU EWR IAD 0 4 1
## 172 700 US LGA DCA 0 5 0
## 173 700 RU EWR BWI 0 5 0
## 174 700 RU EWR IAD 0 5 0
## 175 700 US LGA DCA 0 6 0
## 176 700 RU EWR BWI 0 6 0
## 177 700 RU EWR IAD 0 6 0
## 178 700 MQ LGA DCA 0 1 1
## 179 700 US LGA DCA 0 1 0
## 180 700 RU EWR BWI 0 1 0
## 181 700 RU EWR IAD 0 1 0
## 182 700 MQ LGA DCA 0 2 0
## 183 700 US LGA DCA 0 2 0
## 184 700 RU EWR BWI 0 2 0
## 185 700 RU EWR IAD 0 2 1
## 186 700 MQ LGA DCA 0 3 0
## 187 700 US LGA DCA 0 3 0
## 188 700 RU EWR BWI 0 3 0
## 189 700 RU EWR IAD 0 3 0
## 190 700 MQ LGA DCA 0 4 0
## 191 700 US LGA DCA 0 4 0
## 192 700 RU EWR BWI 0 4 0
## 193 700 RU EWR IAD 0 4 0
## 194 700 MQ LGA DCA 0 5 0
## 195 700 US LGA DCA 0 5 0
## 196 700 RU EWR BWI 0 5 0
## 197 700 RU EWR IAD 0 5 0
## 198 700 US LGA DCA 0 6 0
## 199 700 RU EWR BWI 0 6 1
## 200 700 RU EWR IAD 0 6 1
## 201 700 US LGA DCA 0 1 1
## 202 700 MQ LGA DCA 0 2 1
## 203 700 US LGA DCA 0 2 0
## 204 700 RU EWR BWI 0 2 1
## 205 700 RU EWR IAD 1 2 1
## 206 700 US LGA DCA 0 3 0
## 207 700 RU EWR IAD 0 3 0
## 208 700 MQ LGA DCA 0 4 1
## 209 700 US LGA DCA 0 4 1
## 210 700 RU EWR BWI 0 4 0
## 211 700 RU EWR IAD 0 4 0
## 212 700 MQ LGA DCA 0 5 0
## 213 700 US LGA DCA 0 5 0
## 214 700 RU EWR BWI 0 5 0
## 215 700 RU EWR IAD 0 5 1
## 216 700 US LGA DCA 0 6 0
## 217 700 RU EWR BWI 0 6 0
## 218 700 RU EWR IAD 0 6 0
## 219 730 MQ JFK DCA 0 7 0
## 220 730 DL LGA DCA 0 1 0
## 221 730 DL LGA DCA 0 2 0
## 222 730 DL LGA DCA 0 4 0
## 223 730 DL LGA DCA 0 5 1
## 224 730 DL LGA DCA 0 6 0
## 225 730 DL LGA DCA 0 1 0
## 226 730 DL LGA DCA 0 2 0
## 227 730 DL LGA DCA 0 3 0
## 228 730 DL LGA DCA 0 4 1
## 229 730 DL LGA DCA 0 5 0
## 230 730 DL LGA DCA 0 6 0
## 231 730 DL LGA DCA 0 1 0
## 232 730 DL LGA DCA 0 2 0
## 233 730 DL LGA DCA 0 3 0
## 234 730 DL LGA DCA 0 4 0
## 235 730 DL LGA DCA 0 5 0
## 236 730 DL LGA DCA 0 6 0
## 237 730 DL LGA DCA 1 1 1
## 238 730 DL LGA DCA 0 2 0
## 239 730 DL LGA DCA 0 3 0
## 240 730 DL LGA DCA 0 4 0
## 241 730 DL LGA DCA 0 5 0
## 242 730 DL LGA DCA 0 6 0
## 243 735 CO EWR DCA 0 2 0
## 244 735 CO EWR DCA 0 3 0
## 245 735 CO EWR DCA 0 4 0
## 246 735 CO EWR DCA 0 5 0
## 247 735 CO EWR DCA 0 1 0
## 248 735 CO EWR DCA 0 2 0
## 249 735 CO EWR DCA 0 3 0
## 250 735 CO EWR DCA 0 4 1
## 251 735 CO EWR DCA 0 5 0
## 252 735 CO EWR DCA 0 1 0
## 253 735 CO EWR DCA 0 2 0
## 254 735 CO EWR DCA 0 3 0
## 255 735 CO EWR DCA 0 4 0
## 256 735 CO EWR DCA 0 5 0
## 257 735 CO EWR DCA 1 1 1
## 258 735 CO EWR DCA 0 4 0
## 259 735 CO EWR DCA 0 5 0
## 260 759 CO EWR DCA 0 5 0
## 261 759 CO EWR DCA 0 1 0
## 262 800 MQ LGA DCA 0 1 0
## 263 800 US LGA DCA 0 1 0
## 264 800 MQ LGA DCA 0 2 0
## 265 800 US LGA DCA 0 2 0
## 266 800 MQ LGA DCA 0 3 0
## 267 800 US LGA DCA 0 3 0
## 268 800 MQ LGA DCA 0 4 0
## 269 800 US LGA DCA 0 4 0
## 270 800 MQ LGA DCA 0 5 1
## 271 800 US LGA DCA 0 5 0
## 272 800 MQ LGA DCA 0 1 0
## 273 800 US LGA DCA 0 1 0
## 274 800 MQ LGA DCA 0 2 0
## 275 800 US LGA DCA 0 2 0
## 276 800 MQ LGA DCA 0 3 0
## 277 800 US LGA DCA 0 3 0
## 278 800 MQ LGA DCA 0 4 1
## 279 800 US LGA DCA 0 4 0
## 280 800 MQ LGA DCA 0 5 1
## 281 800 US LGA DCA 0 5 0
## 282 800 MQ LGA DCA 0 1 1
## 283 800 US LGA DCA 0 1 0
## 284 800 MQ LGA DCA 0 2 0
## 285 800 US LGA DCA 0 2 0
## 286 800 MQ LGA DCA 0 3 0
## 287 800 US LGA DCA 0 3 0
## 288 800 MQ LGA DCA 0 4 0
## 289 800 US LGA DCA 0 4 0
## 290 800 MQ LGA DCA 0 5 0
## 291 800 US LGA DCA 0 5 0
## 292 800 MQ LGA DCA 1 1 1
## 293 800 US LGA DCA 0 1 0
## 294 800 MQ LGA DCA 0 2 0
## 295 800 US LGA DCA 0 2 0
## 296 800 MQ LGA DCA 0 3 1
## 297 800 US LGA DCA 0 3 1
## 298 800 MQ LGA DCA 0 4 0
## 299 800 US LGA DCA 0 4 0
## 300 800 MQ LGA DCA 1 5 1
## 301 800 US LGA DCA 0 5 0
## 302 830 DL LGA DCA 0 6 0
## 303 830 DL LGA DCA 0 7 0
## 304 830 DL LGA DCA 0 1 0
## 305 830 DL LGA DCA 0 2 0
## 306 830 DL LGA DCA 0 3 0
## 307 830 DL LGA DCA 0 4 0
## 308 830 DL LGA DCA 0 5 0
## 309 830 DL LGA DCA 0 6 0
## 310 830 DL LGA DCA 0 7 0
## 311 830 DL LGA DCA 0 1 0
## 312 830 DL LGA DCA 0 2 0
## 313 830 DL LGA DCA 0 3 0
## 314 830 DL LGA DCA 0 5 1
## 315 830 DL LGA DCA 0 6 0
## 316 830 DL LGA DCA 0 7 0
## 317 830 DL LGA DCA 0 1 0
## 318 830 DL LGA DCA 0 2 0
## 319 830 DL LGA DCA 0 3 0
## 320 830 DL LGA DCA 0 4 0
## 321 830 DL LGA DCA 0 5 0
## 322 830 DL LGA DCA 0 6 0
## 323 830 DL LGA DCA 0 7 0
## 324 830 DL LGA DCA 0 2 1
## 325 830 DL LGA DCA 0 4 1
## 326 830 DL LGA DCA 0 5 0
## 327 830 DL LGA DCA 0 6 1
## 328 840 DH JFK IAD 0 4 0
## 329 840 DH EWR IAD 0 4 0
## 330 840 DH JFK IAD 0 5 0
## 331 840 DH EWR IAD 0 5 0
## 332 840 DH JFK IAD 0 6 0
## 333 840 DH EWR IAD 0 6 1
## 334 840 DH JFK IAD 0 7 0
## 335 840 DH EWR IAD 0 7 0
## 336 840 DH JFK IAD 0 1 1
## 337 840 DH EWR IAD 0 1 0
## 338 840 DH JFK IAD 0 2 0
## 339 840 DH EWR IAD 0 2 0
## 340 840 DH JFK IAD 0 3 0
## 341 840 DH EWR IAD 0 3 0
## 342 840 DH JFK IAD 0 4 0
## 343 840 DH EWR IAD 0 4 0
## 344 840 DH JFK IAD 0 5 1
## 345 840 DH EWR IAD 0 5 0
## 346 840 DH JFK IAD 0 6 1
## 347 840 DH EWR IAD 0 6 0
## 348 840 DH JFK IAD 0 7 0
## 349 840 DH EWR IAD 0 7 0
## 350 840 DH JFK IAD 0 1 0
## 351 840 DH EWR IAD 0 1 0
## 352 840 DH JFK IAD 0 2 0
## 353 840 DH EWR IAD 0 2 0
## 354 840 DH JFK IAD 0 3 0
## 355 840 DH EWR IAD 0 3 0
## 356 840 DH JFK IAD 0 4 0
## 357 840 DH EWR IAD 0 4 0
## 358 840 DH JFK IAD 0 5 0
## 359 840 DH EWR IAD 0 5 0
## 360 840 DH JFK IAD 0 6 0
## 361 840 DH EWR IAD 0 6 0
## 362 840 DH JFK IAD 0 7 0
## 363 840 DH EWR IAD 0 7 0
## 364 840 DH JFK IAD 0 1 0
## 365 840 DH EWR IAD 0 1 0
## 366 840 DH JFK IAD 0 2 0
## 367 840 DH EWR IAD 0 2 0
## 368 840 DH JFK IAD 0 3 0
## 369 840 DH EWR IAD 0 3 0
## 370 840 DH JFK IAD 0 4 0
## 371 840 DH EWR IAD 0 4 0
## 372 840 DH JFK IAD 0 5 0
## 373 840 DH EWR IAD 0 5 0
## 374 840 DH JFK IAD 0 6 0
## 375 840 DH EWR IAD 0 6 0
## 376 840 DH JFK IAD 0 7 0
## 377 840 DH EWR IAD 0 7 0
## 378 840 DH JFK IAD 0 1 0
## 379 840 DH EWR IAD 0 1 0
## 380 840 DH JFK IAD 0 2 1
## 381 840 DH EWR IAD 0 2 1
## 382 840 DH JFK IAD 0 3 1
## 383 840 DH EWR IAD 0 3 0
## 384 840 DH JFK IAD 0 4 0
## 385 840 DH EWR IAD 0 4 1
## 386 840 DH JFK IAD 0 5 0
## 387 840 DH EWR IAD 0 5 0
## 388 840 DH JFK IAD 0 6 1
## 389 840 DH EWR IAD 0 6 0
## 390 845 RU EWR IAD 0 7 0
## 391 845 RU EWR IAD 0 7 0
## 392 845 RU EWR IAD 0 7 0
## 393 850 UA LGA IAD 0 4 0
## 394 850 UA LGA IAD 0 5 0
## 395 850 UA LGA IAD 0 6 0
## 396 850 UA LGA IAD 0 7 0
## 397 850 UA LGA IAD 0 1 0
## 398 850 UA LGA IAD 0 2 0
## 399 850 UA LGA IAD 0 3 0
## 400 850 UA LGA IAD 0 4 0
## 401 850 UA LGA IAD 0 5 1
## 402 850 UA LGA IAD 0 6 0
## 403 850 UA LGA IAD 0 7 0
## 404 850 UA LGA IAD 0 1 0
## 405 850 UA LGA IAD 0 2 0
## 406 850 UA LGA IAD 0 3 0
## 407 850 UA LGA IAD 0 4 1
## 408 850 UA LGA IAD 0 5 1
## 409 850 UA LGA IAD 0 6 0
## 410 850 UA LGA IAD 0 7 0
## 411 850 UA LGA IAD 0 1 0
## 412 850 UA LGA IAD 0 2 0
## 413 850 UA LGA IAD 0 3 0
## 414 850 UA LGA IAD 0 4 0
## 415 850 UA LGA IAD 0 5 0
## 416 850 UA LGA IAD 0 6 0
## 417 850 UA LGA IAD 0 7 0
## 418 850 UA LGA IAD 1 1 1
## 419 850 UA LGA IAD 1 2 1
## 420 850 UA LGA IAD 0 3 0
## 421 850 UA LGA IAD 0 4 0
## 422 850 UA LGA IAD 0 5 0
## 423 850 UA LGA IAD 0 6 0
## 424 900 MQ LGA DCA 0 4 0
## 425 900 US LGA DCA 0 4 0
## 426 900 MQ LGA DCA 0 5 0
## 427 900 US LGA DCA 0 5 0
## 428 900 RU EWR DCA 0 5 0
## 429 900 RU EWR IAD 0 5 0
## 430 900 MQ LGA DCA 0 6 0
## 431 900 US LGA DCA 0 6 0
## 432 900 US LGA DCA 0 7 0
## 433 900 RU EWR IAD 0 7 0
## 434 900 MQ LGA DCA 0 1 0
## 435 900 US LGA DCA 0 1 0
## 436 900 RU EWR DCA 0 1 1
## 437 900 RU EWR IAD 0 1 0
## 438 900 MQ LGA DCA 0 2 0
## 439 900 US LGA DCA 0 2 0
## 440 900 RU EWR DCA 0 2 0
## 441 900 MQ LGA DCA 0 3 0
## 442 900 US LGA DCA 0 3 0
## 443 900 RU EWR DCA 0 3 0
## 444 900 MQ LGA DCA 0 4 0
## 445 900 US LGA DCA 0 4 0
## 446 900 RU EWR DCA 0 4 0
## 447 900 MQ LGA DCA 0 5 0
## 448 900 RU EWR DCA 0 5 0
## 449 900 MQ LGA DCA 0 6 0
## 450 900 US LGA DCA 0 6 0
## 451 900 US LGA DCA 0 7 0
## 452 900 MQ LGA DCA 0 1 0
## 453 900 US LGA DCA 0 1 0
## 454 900 RU EWR DCA 0 1 0
## 455 900 MQ LGA DCA 0 2 0
## 456 900 US LGA DCA 0 2 0
## 457 900 RU EWR DCA 0 2 0
## 458 900 MQ LGA DCA 0 3 0
## 459 900 US LGA DCA 0 3 0
## 460 900 RU EWR DCA 0 3 0
## 461 900 US LGA DCA 0 4 1
## 462 900 RU EWR DCA 0 4 1
## 463 900 MQ LGA DCA 0 5 1
## 464 900 US LGA DCA 0 5 1
## 465 900 RU EWR DCA 0 5 0
## 466 900 MQ LGA DCA 0 6 0
## 467 900 US LGA DCA 0 6 0
## 468 900 US LGA DCA 0 7 0
## 469 900 MQ LGA DCA 0 1 0
## 470 900 US LGA DCA 0 1 0
## 471 900 RU EWR DCA 0 1 0
## 472 900 MQ LGA DCA 0 2 0
## 473 900 US LGA DCA 0 2 0
## 474 900 RU EWR DCA 0 2 0
## 475 900 MQ LGA DCA 0 3 0
## 476 900 US LGA DCA 0 3 0
## 477 900 RU EWR DCA 0 3 0
## 478 900 MQ LGA DCA 0 4 0
## 479 900 US LGA DCA 0 4 0
## 480 900 RU EWR DCA 0 4 0
## 481 900 MQ LGA DCA 0 5 0
## 482 900 US LGA DCA 0 5 0
## 483 900 RU EWR DCA 0 5 0
## 484 900 MQ LGA DCA 0 6 1
## 485 900 US LGA DCA 0 6 0
## 486 900 US LGA DCA 0 7 0
## 487 900 MQ LGA DCA 1 1 1
## 488 900 US LGA DCA 1 1 1
## 489 900 RU EWR DCA 0 1 0
## 490 900 US LGA DCA 0 2 0
## 491 900 US LGA DCA 0 3 1
## 492 900 RU EWR DCA 0 3 1
## 493 900 MQ LGA DCA 0 4 0
## 494 900 US LGA DCA 0 4 0
## 495 900 RU EWR DCA 0 4 0
## 496 900 MQ LGA DCA 0 5 0
## 497 900 US LGA DCA 0 5 0
## 498 900 RU EWR DCA 0 5 0
## 499 900 MQ LGA DCA 0 6 0
## 500 900 US LGA DCA 0 6 0
## 501 925 MQ JFK DCA 0 7 0
## 502 925 MQ JFK DCA 0 7 0
## 503 925 MQ JFK DCA 0 7 0
## 504 930 DL LGA DCA 0 4 0
## 505 930 DL LGA DCA 0 5 0
## 506 930 RU EWR DCA 0 6 0
## 507 930 RU EWR DCA 0 7 0
## 508 930 DL LGA DCA 0 1 0
## 509 930 DL LGA DCA 0 2 0
## 510 930 DL LGA DCA 0 3 0
## 511 930 DL LGA DCA 0 4 0
## 512 930 DL LGA DCA 0 5 0
## 513 930 RU EWR DCA 0 6 0
## 514 930 RU EWR DCA 0 7 0
## 515 930 DL LGA DCA 0 1 1
## 516 930 DL LGA DCA 0 2 0
## 517 930 DL LGA DCA 0 3 0
## 518 930 DL LGA DCA 0 4 0
## 519 930 DL LGA DCA 0 5 0
## 520 930 RU EWR DCA 0 6 0
## 521 930 RU EWR DCA 0 7 0
## 522 930 DL LGA DCA 0 2 0
## 523 930 DL LGA DCA 0 3 0
## 524 930 DL LGA DCA 0 4 0
## 525 930 DL LGA DCA 0 5 0
## 526 930 RU EWR DCA 0 6 0
## 527 930 RU EWR DCA 0 7 0
## 528 930 DL LGA DCA 0 1 0
## 529 930 DL LGA DCA 0 3 0
## 530 930 DL LGA DCA 0 5 0
## 531 930 RU EWR DCA 0 6 0
## 532 1000 US LGA DCA 0 7 0
## 533 1000 US LGA DCA 0 1 0
## 534 1000 US LGA DCA 0 2 0
## 535 1000 US LGA DCA 0 3 0
## 536 1000 US LGA DCA 0 4 0
## 537 1000 US LGA DCA 0 5 0
## 538 1000 US LGA DCA 0 7 0
## 539 1000 US LGA DCA 0 1 0
## 540 1000 US LGA DCA 0 2 0
## 541 1000 US LGA DCA 0 3 0
## 542 1000 US LGA DCA 0 5 0
## 543 1000 US LGA DCA 0 7 0
## 544 1000 US LGA DCA 0 1 0
## 545 1000 US LGA DCA 0 2 0
## 546 1000 US LGA DCA 0 3 0
## 547 1000 US LGA DCA 0 4 0
## 548 1000 US LGA DCA 0 5 0
## 549 1000 US LGA DCA 0 7 0
## 550 1000 US LGA DCA 0 1 0
## 551 1000 US LGA DCA 0 2 0
## 552 1000 US LGA DCA 0 3 0
## 553 1000 US LGA DCA 0 4 0
## 554 1000 US LGA DCA 0 5 0
## 555 1030 RU EWR BWI 0 4 0
## 556 1030 RU EWR BWI 0 5 0
## 557 1030 DL LGA DCA 0 6 0
## 558 1030 RU EWR BWI 0 6 0
## 559 1030 DL LGA DCA 0 7 0
## 560 1030 RU EWR BWI 0 7 1
## 561 1030 DL LGA DCA 0 1 0
## 562 1030 RU EWR BWI 0 1 1
## 563 1030 DL LGA DCA 0 2 0
## 564 1030 RU EWR BWI 0 2 0
## 565 1030 DL LGA DCA 0 3 0
## 566 1030 RU EWR BWI 0 3 1
## 567 1030 DL LGA DCA 0 4 0
## 568 1030 RU EWR BWI 0 4 0
## 569 1030 DL LGA DCA 0 5 0
## 570 1030 RU EWR BWI 0 5 1
## 571 1030 DL LGA DCA 0 6 0
## 572 1030 RU EWR BWI 0 6 0
## 573 1030 DL LGA DCA 0 7 0
## 574 1030 RU EWR BWI 0 7 0
## 575 1030 DL LGA DCA 0 1 0
## 576 1030 RU EWR BWI 0 1 0
## 577 1030 DL LGA DCA 0 2 0
## 578 1030 RU EWR BWI 0 2 0
## 579 1030 DL LGA DCA 0 3 0
## 580 1030 RU EWR BWI 0 3 0
## 581 1030 RU EWR BWI 0 4 1
## 582 1030 DL LGA DCA 0 5 1
## 583 1030 RU EWR BWI 0 5 1
## 584 1030 DL LGA DCA 0 6 0
## 585 1030 RU EWR BWI 0 6 0
## 586 1030 DL LGA DCA 0 7 0
## 587 1030 RU EWR BWI 1 7 1
## 588 1030 DL LGA DCA 0 1 0
## 589 1030 RU EWR BWI 0 1 0
## 590 1030 DL LGA DCA 0 2 0
## 591 1030 RU EWR BWI 0 2 0
## 592 1030 DL LGA DCA 0 3 0
## 593 1030 RU EWR BWI 0 3 0
## 594 1030 DL LGA DCA 0 4 0
## 595 1030 RU EWR BWI 0 4 0
## 596 1030 DL LGA DCA 0 5 0
## 597 1030 RU EWR BWI 0 5 0
## 598 1030 DL LGA DCA 0 6 0
## 599 1030 RU EWR BWI 0 6 0
## 600 1030 DL LGA DCA 0 7 0
## 601 1030 RU EWR BWI 0 7 1
## 602 1030 DL LGA DCA 0 1 0
## 603 1030 DL LGA DCA 0 2 0
## 604 1030 RU EWR BWI 0 3 0
## 605 1030 DL LGA DCA 0 4 0
## 606 1030 RU EWR BWI 0 4 0
## 607 1030 DL LGA DCA 0 5 0
## 608 1030 RU EWR BWI 0 5 0
## 609 1030 DL LGA DCA 0 6 0
## 610 1030 RU EWR BWI 0 6 0
## 611 1039 DH LGA IAD 0 4 0
## 612 1039 DH LGA IAD 0 5 1
## 613 1039 DH LGA IAD 0 6 0
## 614 1039 DH LGA IAD 0 7 0
## 615 1039 DH LGA IAD 0 1 0
## 616 1039 DH LGA IAD 0 2 0
## 617 1040 DH LGA IAD 0 3 0
## 618 1040 DH LGA IAD 0 4 0
## 619 1040 DH LGA IAD 0 5 0
## 620 1040 DH LGA IAD 0 1 0
## 621 1040 DH LGA IAD 0 2 0
## 622 1040 DH LGA IAD 0 3 0
## 623 1040 DH LGA IAD 0 1 0
## 624 1040 DH LGA IAD 0 2 0
## 625 1040 DH LGA IAD 0 3 0
## 626 1040 DH LGA IAD 0 4 0
## 627 1040 DH LGA IAD 0 5 0
## 628 1040 DH LGA IAD 0 1 1
## 629 1040 DH LGA IAD 0 2 0
## 630 1040 DH LGA IAD 0 3 0
## 631 1040 DH LGA IAD 0 5 0
## 632 1100 US LGA DCA 0 4 0
## 633 1100 MQ LGA DCA 0 5 0
## 634 1100 US LGA DCA 0 5 0
## 635 1100 US LGA DCA 0 6 0
## 636 1100 US LGA DCA 0 7 0
## 637 1100 MQ LGA DCA 0 1 0
## 638 1100 US LGA DCA 0 1 0
## 639 1100 MQ LGA DCA 0 2 0
## 640 1100 US LGA DCA 0 2 0
## 641 1100 MQ LGA DCA 0 3 0
## 642 1100 US LGA DCA 0 3 0
## 643 1100 MQ LGA DCA 0 4 0
## 644 1100 US LGA DCA 0 4 0
## 645 1100 MQ LGA DCA 0 5 1
## 646 1100 US LGA DCA 0 5 0
## 647 1100 US LGA DCA 0 6 0
## 648 1100 US LGA DCA 0 7 0
## 649 1100 MQ LGA DCA 0 1 0
## 650 1100 US LGA DCA 0 1 1
## 651 1100 MQ LGA DCA 0 2 0
## 652 1100 US LGA DCA 0 2 0
## 653 1100 MQ LGA DCA 0 3 1
## 654 1100 US LGA DCA 0 3 0
## 655 1100 MQ LGA DCA 0 4 0
## 656 1100 US LGA DCA 0 4 0
## 657 1100 MQ LGA DCA 0 5 1
## 658 1100 US LGA DCA 0 5 0
## 659 1100 US LGA DCA 0 6 0
## 660 1100 US LGA DCA 0 7 0
## 661 1100 MQ LGA DCA 0 1 0
## 662 1100 US LGA DCA 0 1 0
## 663 1100 MQ LGA DCA 0 2 0
## 664 1100 US LGA DCA 0 2 0
## 665 1100 MQ LGA DCA 0 3 0
## 666 1100 US LGA DCA 0 3 0
## 667 1100 MQ LGA DCA 0 4 0
## 668 1100 US LGA DCA 0 4 0
## 669 1100 MQ LGA DCA 0 5 0
## 670 1100 US LGA DCA 0 5 0
## 671 1100 US LGA DCA 0 6 0
## 672 1100 US LGA DCA 0 7 0
## 673 1100 US LGA DCA 0 1 1
## 674 1100 US LGA DCA 0 2 0
## 675 1100 US LGA DCA 0 3 0
## 676 1100 US LGA DCA 0 4 0
## 677 1100 MQ LGA DCA 0 5 0
## 678 1100 US LGA DCA 0 5 0
## 679 1100 US LGA DCA 0 6 0
## 680 1130 DL LGA DCA 0 1 0
## 681 1130 DL LGA DCA 0 2 0
## 682 1130 DL LGA DCA 0 3 0
## 683 1130 DL LGA DCA 0 4 0
## 684 1130 DL LGA DCA 0 5 0
## 685 1130 DL LGA DCA 0 7 0
## 686 1130 DL LGA DCA 0 1 0
## 687 1130 DL LGA DCA 0 2 0
## 688 1130 DL LGA DCA 0 3 1
## 689 1130 DL LGA DCA 0 4 0
## 690 1130 DL LGA DCA 0 5 0
## 691 1130 DL LGA DCA 0 2 0
## 692 1130 DL LGA DCA 0 3 0
## 693 1130 DL LGA DCA 0 4 0
## 694 1130 DL LGA DCA 0 5 0
## 695 1130 DL LGA DCA 0 7 0
## 696 1130 DL LGA DCA 0 1 0
## 697 1130 DL LGA DCA 0 3 0
## 698 1130 DL LGA DCA 0 4 0
## 699 1130 DL LGA DCA 0 5 0
## 700 1200 US LGA DCA 0 7 0
## 701 1200 US LGA DCA 0 1 0
## 702 1200 US LGA DCA 0 2 0
## 703 1200 US LGA DCA 0 3 0
## 704 1200 US LGA DCA 0 4 0
## 705 1200 US LGA DCA 0 5 0
## 706 1200 US LGA DCA 0 7 0
## 707 1200 US LGA DCA 0 1 0
## 708 1200 US LGA DCA 0 2 0
## 709 1200 US LGA DCA 0 3 0
## 710 1200 US LGA DCA 0 4 0
## 711 1200 US LGA DCA 0 5 0
## 712 1200 US LGA DCA 0 7 0
## 713 1200 US LGA DCA 0 1 0
## 714 1200 US LGA DCA 0 2 0
## 715 1200 US LGA DCA 0 3 0
## 716 1200 US LGA DCA 0 4 0
## 717 1200 US LGA DCA 0 5 0
## 718 1200 US LGA DCA 0 7 0
## 719 1200 US LGA DCA 0 2 0
## 720 1200 US LGA DCA 0 4 0
## 721 1200 US LGA DCA 0 5 0
## 722 1230 DL LGA DCA 0 4 0
## 723 1230 DL LGA DCA 0 5 0
## 724 1230 DL LGA DCA 0 6 0
## 725 1230 DL LGA DCA 0 7 0
## 726 1230 DL LGA DCA 0 1 0
## 727 1230 DL LGA DCA 0 2 0
## 728 1230 DL LGA DCA 0 3 0
## 729 1230 DL LGA DCA 0 4 0
## 730 1230 DL LGA DCA 0 5 0
## 731 1230 DL LGA DCA 0 6 0
## 732 1230 DL LGA DCA 0 7 0
## 733 1230 DL LGA DCA 0 1 0
## 734 1230 DL LGA DCA 0 2 0
## 735 1230 DL LGA DCA 0 3 0
## 736 1230 DL LGA DCA 0 5 0
## 737 1230 DL LGA DCA 0 7 1
## 738 1230 DL LGA DCA 0 1 0
## 739 1230 DL LGA DCA 0 2 0
## 740 1230 DL LGA DCA 0 3 0
## 741 1230 DL LGA DCA 0 4 0
## 742 1230 DL LGA DCA 0 5 0
## 743 1230 DL LGA DCA 0 6 0
## 744 1230 DL LGA DCA 0 7 0
## 745 1230 DL LGA DCA 0 1 0
## 746 1230 DL LGA DCA 0 2 0
## 747 1230 DL LGA DCA 0 4 0
## 748 1230 DL LGA DCA 0 5 0
## 749 1230 DL LGA DCA 0 6 0
## 750 1240 DH JFK IAD 0 4 0
## 751 1240 DH JFK IAD 0 5 0
## 752 1240 DH JFK IAD 0 6 0
## 753 1240 DH JFK IAD 0 7 0
## 754 1240 DH JFK IAD 0 1 1
## 755 1240 DH JFK IAD 0 2 0
## 756 1240 DH JFK IAD 0 3 0
## 757 1240 DH JFK IAD 0 4 0
## 758 1240 DH JFK IAD 0 5 0
## 759 1240 DH JFK IAD 0 6 1
## 760 1240 DH JFK IAD 0 7 0
## 761 1240 DH JFK IAD 0 1 0
## 762 1240 DH JFK IAD 0 2 0
## 763 1240 DH JFK IAD 0 3 0
## 764 1240 DH JFK IAD 0 4 0
## 765 1240 DH JFK IAD 0 5 0
## 766 1240 DH JFK IAD 0 6 0
## 767 1240 DH JFK IAD 0 7 0
## 768 1240 DH JFK IAD 0 1 0
## 769 1240 DH JFK IAD 0 2 1
## 770 1240 DH JFK IAD 0 3 0
## 771 1240 DH JFK IAD 0 4 0
## 772 1240 DH JFK IAD 0 5 0
## 773 1240 DH JFK IAD 0 6 0
## 774 1240 DH JFK IAD 0 7 1
## 775 1240 DH JFK IAD 0 1 0
## 776 1240 DH JFK IAD 0 2 1
## 777 1240 DH JFK IAD 0 3 1
## 778 1240 DH JFK IAD 0 4 0
## 779 1240 DH JFK IAD 0 5 0
## 780 1240 DH JFK IAD 0 6 0
## 781 1245 DH LGA IAD 0 4 0
## 782 1245 DH EWR IAD 0 4 0
## 783 1245 DH LGA IAD 0 5 0
## 784 1245 DH EWR IAD 0 5 1
## 785 1245 DH LGA IAD 0 6 0
## 786 1245 DH EWR IAD 0 6 1
## 787 1245 DH LGA IAD 0 7 0
## 788 1245 DH EWR IAD 0 7 1
## 789 1245 DH LGA IAD 0 1 1
## 790 1245 DH EWR IAD 0 1 1
## 791 1245 DH LGA IAD 0 2 0
## 792 1245 DH EWR IAD 0 2 0
## 793 1245 DH LGA IAD 0 3 0
## 794 1245 DH EWR IAD 0 3 1
## 795 1245 DH LGA IAD 0 4 0
## 796 1245 DH EWR IAD 0 4 0
## 797 1245 DH LGA IAD 0 5 0
## 798 1245 DH EWR IAD 0 5 0
## 799 1245 DH LGA IAD 0 6 0
## 800 1245 DH EWR IAD 0 6 0
## 801 1245 DH LGA IAD 0 7 0
## 802 1245 DH EWR IAD 0 7 0
## 803 1245 DH LGA IAD 0 1 0
## 804 1245 DH EWR IAD 0 1 1
## 805 1245 DH LGA IAD 0 2 0
## 806 1245 DH EWR IAD 0 2 0
## 807 1245 DH LGA IAD 0 3 0
## 808 1245 DH EWR IAD 0 3 0
## 809 1245 DH LGA IAD 0 4 0
## 810 1245 DH EWR IAD 0 4 0
## 811 1245 DH EWR IAD 0 5 0
## 812 1245 DH LGA IAD 0 6 0
## 813 1245 DH EWR IAD 0 6 0
## 814 1245 DH LGA IAD 0 7 0
## 815 1245 DH EWR IAD 0 7 1
## 816 1245 DH LGA IAD 0 1 0
## 817 1245 DH EWR IAD 0 1 0
## 818 1245 DH LGA IAD 0 2 0
## 819 1245 DH EWR IAD 0 2 0
## 820 1245 DH LGA IAD 0 3 0
## 821 1245 DH EWR IAD 0 3 0
## 822 1245 DH LGA IAD 0 4 1
## 823 1245 DH EWR IAD 0 4 0
## 824 1245 DH LGA IAD 0 5 1
## 825 1245 DH EWR IAD 0 5 0
## 826 1245 DH LGA IAD 0 6 0
## 827 1245 DH EWR IAD 0 6 0
## 828 1245 DH LGA IAD 0 7 0
## 829 1245 DH EWR IAD 0 7 0
## 830 1245 DH LGA IAD 0 1 0
## 831 1245 DH EWR IAD 0 1 1
## 832 1245 DH LGA IAD 1 2 1
## 833 1245 DH EWR IAD 0 2 1
## 834 1245 DH LGA IAD 0 3 0
## 835 1245 DH EWR IAD 0 3 1
## 836 1245 DH LGA IAD 0 4 1
## 837 1245 DH EWR IAD 0 4 0
## 838 1245 DH LGA IAD 0 5 0
## 839 1245 DH EWR IAD 0 5 1
## 840 1245 DH LGA IAD 0 6 0
## 841 1245 DH EWR IAD 0 6 0
## 842 1300 MQ LGA DCA 0 4 0
## 843 1300 US LGA DCA 0 4 0
## 844 1300 CO EWR DCA 0 4 0
## 845 1300 RU EWR IAD 0 4 0
## 846 1300 MQ LGA DCA 0 5 0
## 847 1300 US LGA DCA 0 5 0
## 848 1300 CO EWR DCA 0 5 0
## 849 1300 RU EWR IAD 0 5 0
## 850 1300 MQ LGA DCA 0 6 0
## 851 1300 US LGA DCA 0 6 0
## 852 1300 CO EWR DCA 0 6 0
## 853 1300 MQ LGA DCA 0 7 0
## 854 1300 US LGA DCA 0 7 0
## 855 1300 CO EWR DCA 0 7 0
## 856 1300 MQ LGA DCA 0 1 0
## 857 1300 US LGA DCA 0 1 0
## 858 1300 CO EWR DCA 0 1 1
## 859 1300 RU EWR IAD 0 1 1
## 860 1300 MQ LGA DCA 0 2 0
## 861 1300 US LGA DCA 0 2 0
## 862 1300 CO EWR DCA 0 2 0
## 863 1300 RU EWR IAD 0 2 0
## 864 1300 MQ LGA DCA 0 3 0
## 865 1300 US LGA DCA 0 3 0
## 866 1300 CO EWR DCA 0 3 0
## 867 1300 RU EWR IAD 0 3 0
## 868 1300 MQ LGA DCA 0 4 0
## 869 1300 US LGA DCA 0 4 0
## 870 1300 CO EWR DCA 0 4 0
## 871 1300 RU EWR IAD 0 4 0
## 872 1300 MQ LGA DCA 0 5 0
## 873 1300 US LGA DCA 0 5 0
## 874 1300 CO EWR DCA 0 5 0
## 875 1300 RU EWR IAD 0 5 0
## 876 1300 MQ LGA DCA 0 6 0
## 877 1300 US LGA DCA 0 6 0
## 878 1300 CO EWR DCA 0 6 0
## 879 1300 MQ LGA DCA 0 7 1
## 880 1300 US LGA DCA 0 7 0
## 881 1300 CO EWR DCA 0 7 0
## 882 1300 MQ LGA DCA 0 1 0
## 883 1300 US LGA DCA 0 1 0
## 884 1300 CO EWR DCA 0 1 0
## 885 1300 RU EWR IAD 0 1 0
## 886 1300 MQ LGA DCA 0 2 0
## 887 1300 US LGA DCA 0 2 0
## 888 1300 CO EWR DCA 0 2 0
## 889 1300 RU EWR IAD 0 2 0
## 890 1300 MQ LGA DCA 0 3 0
## 891 1300 US LGA DCA 0 3 0
## 892 1300 CO EWR DCA 0 3 0
## 893 1300 RU EWR IAD 0 3 0
## 894 1300 MQ LGA DCA 0 4 1
## 895 1300 CO EWR DCA 0 4 0
## 896 1300 RU EWR IAD 0 4 1
## 897 1300 MQ LGA DCA 0 5 1
## 898 1300 US LGA DCA 0 5 0
## 899 1300 CO EWR DCA 0 5 1
## 900 1300 RU EWR IAD 0 5 1
## 901 1300 MQ LGA DCA 0 6 0
## 902 1300 US LGA DCA 0 6 0
## 903 1300 CO EWR DCA 0 6 0
## 904 1300 MQ LGA DCA 0 7 1
## 905 1300 US LGA DCA 0 7 1
## 906 1300 CO EWR DCA 0 7 0
## 907 1300 MQ LGA DCA 0 1 0
## 908 1300 US LGA DCA 0 1 0
## 909 1300 CO EWR DCA 0 1 0
## 910 1300 RU EWR IAD 0 1 0
## 911 1300 MQ LGA DCA 0 2 0
## 912 1300 US LGA DCA 0 2 0
## 913 1300 CO EWR DCA 0 2 0
## 914 1300 RU EWR IAD 0 2 0
## 915 1300 MQ LGA DCA 0 3 0
## 916 1300 US LGA DCA 0 3 0
## 917 1300 CO EWR DCA 0 3 0
## 918 1300 RU EWR IAD 0 3 0
## 919 1300 MQ LGA DCA 0 4 0
## 920 1300 US LGA DCA 0 4 0
## 921 1300 CO EWR DCA 0 4 0
## 922 1300 RU EWR IAD 0 4 0
## 923 1300 MQ LGA DCA 0 5 1
## 924 1300 US LGA DCA 0 5 1
## 925 1300 CO EWR DCA 0 5 0
## 926 1300 RU EWR IAD 0 5 0
## 927 1300 MQ LGA DCA 0 6 0
## 928 1300 US LGA DCA 0 6 0
## 929 1300 CO EWR DCA 0 6 0
## 930 1300 MQ LGA DCA 0 7 0
## 931 1300 US LGA DCA 0 7 0
## 932 1300 CO EWR DCA 0 7 0
## 933 1300 MQ LGA DCA 1 1 1
## 934 1300 CO EWR DCA 0 1 0
## 935 1300 RU EWR IAD 0 1 0
## 936 1300 US LGA DCA 0 2 0
## 937 1300 CO EWR DCA 0 2 1
## 938 1300 US LGA DCA 0 3 0
## 939 1300 CO EWR DCA 0 3 0
## 940 1300 MQ LGA DCA 0 4 0
## 941 1300 US LGA DCA 0 4 0
## 942 1300 CO EWR DCA 0 4 0
## 943 1300 RU EWR IAD 0 4 0
## 944 1300 MQ LGA DCA 0 5 0
## 945 1300 US LGA DCA 0 5 0
## 946 1300 CO EWR DCA 0 5 0
## 947 1300 RU EWR IAD 0 5 0
## 948 1300 MQ LGA DCA 0 6 0
## 949 1300 US LGA DCA 0 6 0
## 950 1300 CO EWR DCA 0 6 0
## 951 1315 RU EWR BWI 0 7 1
## 952 1315 RU EWR BWI 0 7 0
## 953 1315 RU EWR BWI 0 7 1
## 954 1315 RU EWR BWI 0 7 0
## 955 1330 DL LGA DCA 0 1 0
## 956 1330 DL LGA DCA 0 2 0
## 957 1330 DL LGA DCA 0 3 0
## 958 1330 DL LGA DCA 0 4 0
## 959 1330 DL LGA DCA 0 5 0
## 960 1330 DL LGA DCA 0 7 0
## 961 1330 DL LGA DCA 0 1 0
## 962 1330 DL LGA DCA 0 2 0
## 963 1330 DL LGA DCA 0 3 0
## 964 1330 DL LGA DCA 0 4 0
## 965 1330 DL LGA DCA 0 5 0
## 966 1330 DL LGA DCA 0 2 0
## 967 1330 DL LGA DCA 0 3 0
## 968 1330 DL LGA DCA 0 4 0
## 969 1330 DL LGA DCA 0 7 0
## 970 1330 DL LGA DCA 0 1 0
## 971 1330 DL LGA DCA 0 3 0
## 972 1330 DL LGA DCA 0 4 0
## 973 1330 DL LGA DCA 0 5 0
## 974 1359 RU EWR DCA 0 2 0
## 975 1359 RU EWR DCA 0 3 0
## 976 1359 RU EWR DCA 0 4 0
## 977 1359 RU EWR DCA 0 5 0
## 978 1359 RU EWR DCA 0 6 0
## 979 1359 RU EWR DCA 0 7 0
## 980 1359 RU EWR DCA 0 1 0
## 981 1359 RU EWR DCA 0 2 0
## 982 1359 RU EWR DCA 0 3 0
## 983 1359 RU EWR DCA 0 4 0
## 984 1359 RU EWR DCA 0 5 1
## 985 1359 RU EWR DCA 0 6 0
## 986 1359 RU EWR DCA 0 7 1
## 987 1359 RU EWR DCA 0 1 0
## 988 1359 RU EWR DCA 0 2 0
## 989 1359 RU EWR DCA 0 3 0
## 990 1359 RU EWR DCA 0 4 0
## 991 1359 RU EWR DCA 0 5 0
## 992 1359 RU EWR DCA 0 6 0
## 993 1359 RU EWR DCA 0 7 0
## 994 1359 RU EWR DCA 0 1 0
## 995 1359 RU EWR DCA 0 3 0
## 996 1359 RU EWR DCA 0 4 1
## 997 1359 RU EWR DCA 0 5 1
## 998 1359 RU EWR DCA 0 6 0
## 999 1400 MQ LGA DCA 0 4 0
## 1000 1400 RU EWR DCA 0 4 0
## 1001 1400 MQ LGA DCA 0 5 0
## 1002 1400 RU EWR DCA 0 5 0
## 1003 1400 RU EWR DCA 0 6 0
## 1004 1400 US LGA DCA 0 7 0
## 1005 1400 RU EWR DCA 0 7 1
## 1006 1400 US LGA DCA 0 1 0
## 1007 1400 RU EWR DCA 0 1 1
## 1008 1400 MQ LGA DCA 0 2 0
## 1009 1400 US LGA DCA 0 2 0
## 1010 1400 MQ LGA DCA 0 3 0
## 1011 1400 US LGA DCA 0 3 0
## 1012 1400 MQ LGA DCA 0 4 0
## 1013 1400 US LGA DCA 0 4 0
## 1014 1400 MQ LGA DCA 0 5 0
## 1015 1400 US LGA DCA 0 5 0
## 1016 1400 US LGA DCA 0 7 0
## 1017 1400 US LGA DCA 0 1 0
## 1018 1400 MQ LGA DCA 0 2 0
## 1019 1400 US LGA DCA 0 2 0
## 1020 1400 US LGA DCA 0 3 0
## 1021 1400 MQ LGA DCA 0 4 0
## 1022 1400 US LGA DCA 0 4 0
## 1023 1400 MQ LGA DCA 0 5 1
## 1024 1400 US LGA DCA 0 5 0
## 1025 1400 US LGA DCA 0 7 0
## 1026 1400 MQ LGA DCA 0 1 0
## 1027 1400 US LGA DCA 0 1 0
## 1028 1400 MQ LGA DCA 0 2 0
## 1029 1400 US LGA DCA 0 2 0
## 1030 1400 MQ LGA DCA 0 3 0
## 1031 1400 US LGA DCA 0 3 0
## 1032 1400 MQ LGA DCA 0 4 0
## 1033 1400 US LGA DCA 0 4 0
## 1034 1400 MQ LGA DCA 0 5 0
## 1035 1400 US LGA DCA 0 5 0
## 1036 1400 US LGA DCA 0 7 0
## 1037 1400 US LGA DCA 0 1 0
## 1038 1400 MQ LGA DCA 1 2 1
## 1039 1400 US LGA DCA 0 2 0
## 1040 1400 MQ LGA DCA 0 3 1
## 1041 1400 MQ LGA DCA 0 4 1
## 1042 1400 US LGA DCA 0 4 0
## 1043 1400 MQ LGA DCA 0 5 0
## 1044 1400 US LGA DCA 0 5 0
## 1045 1430 DL LGA DCA 0 4 0
## 1046 1430 DL LGA DCA 0 5 0
## 1047 1430 DH EWR IAD 0 5 1
## 1048 1430 DL LGA DCA 0 6 0
## 1049 1430 DL LGA DCA 0 7 0
## 1050 1430 DH EWR IAD 0 7 1
## 1051 1430 DL LGA DCA 0 1 0
## 1052 1430 DH EWR IAD 0 1 1
## 1053 1430 DL LGA DCA 0 2 0
## 1054 1430 DH EWR IAD 0 2 0
## 1055 1430 DL LGA DCA 0 3 0
## 1056 1430 DH EWR IAD 0 3 0
## 1057 1430 DL LGA DCA 0 4 0
## 1058 1430 DH EWR IAD 0 4 0
## 1059 1430 DL LGA DCA 0 5 0
## 1060 1430 DH EWR IAD 0 5 0
## 1061 1430 DL LGA DCA 0 6 0
## 1062 1430 DL LGA DCA 0 7 0
## 1063 1430 DH EWR IAD 0 7 1
## 1064 1430 DL LGA DCA 0 1 0
## 1065 1430 DH EWR IAD 0 1 0
## 1066 1430 DL LGA DCA 0 2 0
## 1067 1430 DH EWR IAD 0 2 1
## 1068 1430 DL LGA DCA 0 3 0
## 1069 1430 DH EWR IAD 0 3 1
## 1070 1430 DL LGA DCA 0 4 0
## 1071 1430 DL LGA DCA 0 5 0
## 1072 1430 DL LGA DCA 0 6 0
## 1073 1430 DL LGA DCA 0 7 0
## 1074 1430 DL LGA DCA 0 1 0
## 1075 1430 DH EWR IAD 0 1 0
## 1076 1430 DL LGA DCA 0 2 0
## 1077 1430 DH EWR IAD 0 2 0
## 1078 1430 DL LGA DCA 0 3 0
## 1079 1430 DH EWR IAD 0 3 0
## 1080 1430 DL LGA DCA 0 4 1
## 1081 1430 DH EWR IAD 0 4 0
## 1082 1430 DL LGA DCA 0 5 0
## 1083 1430 DH EWR IAD 0 5 0
## 1084 1430 DL LGA DCA 0 6 0
## 1085 1430 DL LGA DCA 0 7 0
## 1086 1430 DH EWR IAD 0 7 1
## 1087 1430 DL LGA DCA 0 1 1
## 1088 1430 DH EWR IAD 1 1 1
## 1089 1430 DL LGA DCA 0 2 0
## 1090 1430 DH EWR IAD 1 2 1
## 1091 1430 DH EWR IAD 0 3 0
## 1092 1430 DL LGA DCA 0 4 0
## 1093 1430 DH EWR IAD 0 4 0
## 1094 1430 DL LGA DCA 0 5 0
## 1095 1430 DH EWR IAD 0 5 0
## 1096 1430 DL LGA DCA 0 6 0
## 1097 1455 OH JFK BWI 0 4 0
## 1098 1455 DL JFK DCA 0 4 0
## 1099 1455 RU EWR BWI 0 4 0
## 1100 1455 OH JFK BWI 0 5 0
## 1101 1455 DH LGA IAD 0 5 1
## 1102 1455 DH JFK IAD 0 5 0
## 1103 1455 DL JFK DCA 0 5 0
## 1104 1455 RU EWR BWI 0 5 0
## 1105 1455 DH JFK IAD 0 6 0
## 1106 1455 DL JFK DCA 0 6 1
## 1107 1455 RU EWR BWI 0 6 0
## 1108 1455 OH JFK BWI 0 7 1
## 1109 1455 DH LGA IAD 0 7 1
## 1110 1455 DH JFK IAD 0 7 0
## 1111 1455 DL JFK DCA 0 7 0
## 1112 1455 RU EWR BWI 0 7 1
## 1113 1455 OH JFK BWI 0 1 1
## 1114 1455 DH LGA IAD 0 1 1
## 1115 1455 DL JFK DCA 0 1 0
## 1116 1455 RU EWR BWI 0 1 1
## 1117 1455 OH JFK BWI 0 2 0
## 1118 1455 DH LGA IAD 0 2 0
## 1119 1455 DH JFK IAD 0 2 0
## 1120 1455 DL JFK DCA 0 2 0
## 1121 1455 RU EWR BWI 0 2 0
## 1122 1455 OH JFK BWI 0 3 0
## 1123 1455 DH LGA IAD 0 3 0
## 1124 1455 DH JFK IAD 0 3 0
## 1125 1455 DL JFK DCA 0 3 0
## 1126 1455 RU EWR BWI 0 3 0
## 1127 1455 OH JFK BWI 0 4 0
## 1128 1455 DH LGA IAD 0 4 1
## 1129 1455 DH JFK IAD 0 4 0
## 1130 1455 DL JFK DCA 0 4 1
## 1131 1455 RU EWR BWI 0 4 0
## 1132 1455 OH JFK BWI 0 5 0
## 1133 1455 DH LGA IAD 0 5 1
## 1134 1455 DH JFK IAD 0 5 0
## 1135 1455 DL JFK DCA 0 5 0
## 1136 1455 RU EWR BWI 0 5 0
## 1137 1455 OH JFK BWI 0 6 0
## 1138 1455 DL JFK DCA 0 6 1
## 1139 1455 RU EWR BWI 0 6 0
## 1140 1455 OH JFK BWI 0 7 0
## 1141 1455 DH LGA IAD 0 7 0
## 1142 1455 DH JFK IAD 0 7 1
## 1143 1455 DL JFK DCA 0 7 1
## 1144 1455 RU EWR BWI 0 7 0
## 1145 1455 OH JFK BWI 0 1 0
## 1146 1455 DH LGA IAD 0 1 0
## 1147 1455 DH JFK IAD 0 1 1
## 1148 1455 DL JFK DCA 0 1 0
## 1149 1455 RU EWR BWI 0 1 1
## 1150 1455 OH JFK BWI 0 2 0
## 1151 1455 DH JFK IAD 0 2 0
## 1152 1455 DL JFK DCA 0 2 0
## 1153 1455 RU EWR BWI 0 2 1
## 1154 1455 OH JFK BWI 0 3 0
## 1155 1455 DH JFK IAD 0 3 0
## 1156 1455 DL JFK DCA 0 3 0
## 1157 1455 RU EWR BWI 0 3 0
## 1158 1455 OH JFK BWI 0 4 0
## 1159 1455 DH LGA IAD 0 4 1
## 1160 1455 DH JFK IAD 0 4 0
## 1161 1455 DL JFK DCA 0 4 0
## 1162 1455 RU EWR BWI 0 4 0
## 1163 1455 OH JFK BWI 0 5 0
## 1164 1455 DH LGA IAD 0 5 1
## 1165 1455 DH JFK IAD 0 5 0
## 1166 1455 DL JFK DCA 0 5 1
## 1167 1455 RU EWR BWI 0 5 1
## 1168 1455 OH JFK BWI 0 6 0
## 1169 1455 DL JFK DCA 0 6 1
## 1170 1455 RU EWR BWI 0 6 0
## 1171 1455 OH JFK BWI 0 7 0
## 1172 1455 DH LGA IAD 0 7 1
## 1173 1455 DH JFK IAD 0 7 1
## 1174 1455 DL JFK DCA 0 7 1
## 1175 1455 RU EWR BWI 0 7 1
## 1176 1455 OH JFK BWI 0 1 0
## 1177 1455 DH LGA IAD 0 1 0
## 1178 1455 DH JFK IAD 0 1 0
## 1179 1455 DL JFK DCA 0 1 1
## 1180 1455 RU EWR BWI 0 1 0
## 1181 1455 OH JFK BWI 0 2 0
## 1182 1455 DH LGA IAD 0 2 0
## 1183 1455 DH JFK IAD 0 2 0
## 1184 1455 DL JFK DCA 0 2 1
## 1185 1455 RU EWR BWI 0 2 0
## 1186 1455 OH JFK BWI 0 3 0
## 1187 1455 DH LGA IAD 0 3 0
## 1188 1455 DH JFK IAD 0 3 0
## 1189 1455 DL JFK DCA 0 3 0
## 1190 1455 RU EWR BWI 0 3 0
## 1191 1455 OH JFK BWI 0 4 1
## 1192 1455 DH LGA IAD 0 4 1
## 1193 1455 DH JFK IAD 0 4 0
## 1194 1455 DL JFK DCA 0 4 0
## 1195 1455 RU EWR BWI 0 4 0
## 1196 1455 OH JFK BWI 0 5 1
## 1197 1455 DH JFK IAD 0 5 0
## 1198 1455 DL JFK DCA 0 5 0
## 1199 1455 RU EWR BWI 0 5 1
## 1200 1455 OH JFK BWI 0 6 0
## 1201 1455 DL JFK DCA 0 6 1
## 1202 1455 RU EWR BWI 0 6 0
## 1203 1455 OH JFK BWI 0 7 0
## 1204 1455 DH LGA IAD 0 7 0
## 1205 1455 DH JFK IAD 0 7 0
## 1206 1455 DL JFK DCA 0 7 1
## 1207 1455 RU EWR BWI 0 7 0
## 1208 1455 OH JFK BWI 0 1 0
## 1209 1455 DH LGA IAD 0 1 1
## 1210 1455 DH JFK IAD 0 1 1
## 1211 1455 DL JFK DCA 1 1 1
## 1212 1455 RU EWR BWI 0 1 0
## 1213 1455 OH JFK BWI 0 2 0
## 1214 1455 DH LGA IAD 1 2 1
## 1215 1455 DH JFK IAD 1 2 1
## 1216 1455 DL JFK DCA 0 2 1
## 1217 1455 OH JFK BWI 0 3 0
## 1218 1455 DH LGA IAD 0 3 1
## 1219 1455 DH JFK IAD 0 3 0
## 1220 1455 DL JFK DCA 0 3 0
## 1221 1455 RU EWR BWI 0 3 0
## 1222 1455 OH JFK BWI 0 4 0
## 1223 1455 DH LGA IAD 0 4 1
## 1224 1455 DH JFK IAD 0 4 0
## 1225 1455 DL JFK DCA 0 4 1
## 1226 1455 RU EWR BWI 0 4 0
## 1227 1455 OH JFK BWI 0 5 0
## 1228 1455 DH LGA IAD 0 5 1
## 1229 1455 DH JFK IAD 0 5 0
## 1230 1455 DL JFK DCA 0 5 1
## 1231 1455 RU EWR BWI 0 5 1
## 1232 1455 OH JFK BWI 0 6 0
## 1233 1455 DL JFK DCA 0 6 0
## 1234 1455 RU EWR BWI 0 6 0
## 1235 1500 MQ LGA DCA 0 4 0
## 1236 1500 US LGA DCA 0 4 0
## 1237 1500 MQ LGA DCA 0 5 0
## 1238 1500 US LGA DCA 0 5 0
## 1239 1500 US LGA DCA 0 6 0
## 1240 1500 MQ LGA DCA 0 7 1
## 1241 1500 US LGA DCA 0 7 0
## 1242 1500 US LGA DCA 0 1 0
## 1243 1500 MQ LGA DCA 0 2 1
## 1244 1500 US LGA DCA 0 2 0
## 1245 1500 RU EWR IAD 0 2 0
## 1246 1500 MQ LGA DCA 0 3 1
## 1247 1500 US LGA DCA 0 3 1
## 1248 1500 RU EWR IAD 0 3 1
## 1249 1500 MQ LGA DCA 0 4 0
## 1250 1500 US LGA DCA 0 4 0
## 1251 1500 RU EWR IAD 0 4 0
## 1252 1500 MQ LGA DCA 0 5 0
## 1253 1500 US LGA DCA 0 5 0
## 1254 1500 RU EWR IAD 0 5 0
## 1255 1500 US LGA DCA 0 6 0
## 1256 1500 RU EWR IAD 0 6 0
## 1257 1500 MQ LGA DCA 0 7 0
## 1258 1500 US LGA DCA 0 7 0
## 1259 1500 RU EWR IAD 0 7 0
## 1260 1500 MQ LGA DCA 0 1 0
## 1261 1500 US LGA DCA 0 1 0
## 1262 1500 RU EWR IAD 0 1 0
## 1263 1500 MQ LGA DCA 0 2 0
## 1264 1500 US LGA DCA 0 2 0
## 1265 1500 RU EWR IAD 0 2 0
## 1266 1500 MQ LGA DCA 0 3 0
## 1267 1500 US LGA DCA 0 3 0
## 1268 1500 RU EWR IAD 0 3 0
## 1269 1500 MQ LGA DCA 0 4 0
## 1270 1500 US LGA DCA 0 4 0
## 1271 1500 RU EWR IAD 0 4 0
## 1272 1500 US LGA DCA 0 5 0
## 1273 1500 RU EWR IAD 0 5 1
## 1274 1500 US LGA DCA 0 6 0
## 1275 1500 RU EWR IAD 0 6 0
## 1276 1500 MQ LGA DCA 0 7 1
## 1277 1500 RU EWR IAD 0 7 1
## 1278 1500 MQ LGA DCA 0 1 1
## 1279 1500 US LGA DCA 0 1 0
## 1280 1500 RU EWR IAD 0 1 0
## 1281 1500 MQ LGA DCA 0 2 0
## 1282 1500 US LGA DCA 0 2 0
## 1283 1500 RU EWR IAD 0 2 0
## 1284 1500 MQ LGA DCA 0 3 0
## 1285 1500 US LGA DCA 0 3 0
## 1286 1500 RU EWR IAD 0 3 1
## 1287 1500 MQ LGA DCA 0 4 0
## 1288 1500 US LGA DCA 0 4 0
## 1289 1500 RU EWR IAD 0 4 0
## 1290 1500 US LGA DCA 0 5 0
## 1291 1500 RU EWR IAD 0 5 0
## 1292 1500 US LGA DCA 0 6 0
## 1293 1500 RU EWR IAD 0 6 0
## 1294 1500 MQ LGA DCA 0 7 1
## 1295 1500 US LGA DCA 0 7 0
## 1296 1500 RU EWR IAD 0 7 0
## 1297 1500 RU EWR IAD 0 1 1
## 1298 1500 MQ LGA DCA 0 2 0
## 1299 1500 US LGA DCA 0 2 0
## 1300 1500 RU EWR IAD 0 2 1
## 1301 1500 MQ LGA DCA 0 3 0
## 1302 1500 US LGA DCA 0 3 1
## 1303 1500 RU EWR IAD 0 3 0
## 1304 1500 MQ LGA DCA 0 4 1
## 1305 1500 US LGA DCA 0 4 0
## 1306 1500 RU EWR IAD 0 4 0
## 1307 1500 MQ LGA DCA 0 5 0
## 1308 1500 US LGA DCA 0 5 0
## 1309 1500 RU EWR IAD 0 5 1
## 1310 1500 US LGA DCA 0 6 0
## 1311 1500 RU EWR IAD 0 6 0
## 1312 1515 RU EWR IAD 0 4 0
## 1313 1515 RU EWR IAD 0 5 1
## 1314 1515 RU EWR IAD 0 6 0
## 1315 1515 RU EWR IAD 0 7 1
## 1316 1515 RU EWR IAD 0 1 1
## 1317 1520 MQ JFK DCA 0 6 0
## 1318 1525 RU EWR DCA 0 4 0
## 1319 1525 RU EWR DCA 0 5 0
## 1320 1525 RU EWR DCA 0 1 1
## 1321 1525 RU EWR DCA 0 2 1
## 1322 1525 RU EWR DCA 0 3 0
## 1323 1525 RU EWR DCA 0 4 0
## 1324 1525 RU EWR DCA 0 5 0
## 1325 1525 RU EWR DCA 0 1 0
## 1326 1525 RU EWR DCA 0 2 0
## 1327 1525 RU EWR DCA 0 3 0
## 1328 1525 RU EWR DCA 0 4 0
## 1329 1525 RU EWR DCA 0 5 1
## 1330 1525 RU EWR DCA 0 1 0
## 1331 1525 RU EWR DCA 0 2 1
## 1332 1525 RU EWR DCA 0 3 1
## 1333 1525 RU EWR DCA 0 4 0
## 1334 1525 RU EWR DCA 0 5 1
## 1335 1525 RU EWR DCA 1 1 1
## 1336 1525 RU EWR DCA 0 3 0
## 1337 1525 RU EWR DCA 0 4 1
## 1338 1525 RU EWR DCA 0 5 1
## 1339 1530 MQ JFK DCA 0 4 0
## 1340 1530 MQ JFK DCA 0 5 0
## 1341 1530 MQ JFK DCA 0 6 1
## 1342 1530 MQ JFK DCA 0 7 1
## 1343 1530 MQ JFK DCA 0 1 0
## 1344 1530 DL LGA DCA 0 2 0
## 1345 1530 MQ JFK DCA 0 2 0
## 1346 1530 DL LGA DCA 0 3 0
## 1347 1530 MQ JFK DCA 0 3 0
## 1348 1530 DL LGA DCA 0 4 0
## 1349 1530 MQ JFK DCA 0 4 0
## 1350 1530 DL LGA DCA 0 5 0
## 1351 1530 MQ JFK DCA 0 5 0
## 1352 1530 MQ JFK DCA 0 6 0
## 1353 1530 DL LGA DCA 0 7 0
## 1354 1530 MQ JFK DCA 0 7 0
## 1355 1530 DL LGA DCA 0 1 0
## 1356 1530 MQ JFK DCA 0 1 0
## 1357 1530 DL LGA DCA 0 2 0
## 1358 1530 MQ JFK DCA 0 2 0
## 1359 1530 DL LGA DCA 0 3 1
## 1360 1530 MQ JFK DCA 0 3 0
## 1361 1530 DL LGA DCA 0 4 0
## 1362 1530 MQ JFK DCA 0 4 0
## 1363 1530 DL LGA DCA 0 5 0
## 1364 1530 MQ JFK DCA 0 5 0
## 1365 1530 MQ JFK DCA 0 6 0
## 1366 1530 MQ JFK DCA 0 7 1
## 1367 1530 DL LGA DCA 0 1 0
## 1368 1530 MQ JFK DCA 0 1 0
## 1369 1530 DL LGA DCA 0 2 0
## 1370 1530 MQ JFK DCA 0 2 0
## 1371 1530 DL LGA DCA 0 3 0
## 1372 1530 MQ JFK DCA 0 3 0
## 1373 1530 DL LGA DCA 0 4 0
## 1374 1530 MQ JFK DCA 0 4 0
## 1375 1530 DL LGA DCA 0 5 0
## 1376 1530 MQ JFK DCA 0 5 1
## 1377 1530 MQ JFK DCA 0 6 0
## 1378 1530 DL LGA DCA 0 7 0
## 1379 1530 MQ JFK DCA 0 7 1
## 1380 1530 DL LGA DCA 1 1 1
## 1381 1530 MQ JFK DCA 1 1 1
## 1382 1530 MQ JFK DCA 0 2 1
## 1383 1530 DL LGA DCA 0 3 0
## 1384 1530 MQ JFK DCA 0 3 0
## 1385 1530 DL LGA DCA 0 4 0
## 1386 1530 MQ JFK DCA 0 4 1
## 1387 1530 DL LGA DCA 0 5 0
## 1388 1530 MQ JFK DCA 0 5 0
## 1389 1600 RU EWR DCA 0 6 0
## 1390 1600 US LGA DCA 0 7 0
## 1391 1600 MQ LGA DCA 0 1 1
## 1392 1600 US LGA DCA 0 1 0
## 1393 1600 MQ LGA DCA 0 2 0
## 1394 1600 US LGA DCA 0 2 0
## 1395 1600 MQ LGA DCA 0 3 1
## 1396 1600 US LGA DCA 0 3 1
## 1397 1600 MQ LGA DCA 0 4 0
## 1398 1600 US LGA DCA 0 4 0
## 1399 1600 MQ LGA DCA 0 5 1
## 1400 1600 US LGA DCA 0 5 0
## 1401 1600 RU EWR DCA 0 6 0
## 1402 1600 US LGA DCA 0 7 0
## 1403 1600 MQ LGA DCA 0 1 0
## 1404 1600 US LGA DCA 0 1 0
## 1405 1600 MQ LGA DCA 0 2 1
## 1406 1600 US LGA DCA 0 2 1
## 1407 1600 MQ LGA DCA 0 3 0
## 1408 1600 US LGA DCA 0 3 0
## 1409 1600 MQ LGA DCA 0 4 1
## 1410 1600 US LGA DCA 0 4 0
## 1411 1600 MQ LGA DCA 0 5 1
## 1412 1600 US LGA DCA 0 5 0
## 1413 1600 RU EWR DCA 0 6 0
## 1414 1600 US LGA DCA 0 7 1
## 1415 1600 MQ LGA DCA 0 1 0
## 1416 1600 US LGA DCA 0 1 0
## 1417 1600 MQ LGA DCA 0 2 0
## 1418 1600 US LGA DCA 0 2 0
## 1419 1600 MQ LGA DCA 0 3 0
## 1420 1600 US LGA DCA 0 3 0
## 1421 1600 MQ LGA DCA 0 4 0
## 1422 1600 US LGA DCA 0 4 0
## 1423 1600 RU EWR DCA 0 6 0
## 1424 1600 US LGA DCA 0 7 0
## 1425 1600 US LGA DCA 0 1 0
## 1426 1600 MQ LGA DCA 1 2 1
## 1427 1600 US LGA DCA 0 2 0
## 1428 1600 MQ LGA DCA 0 3 0
## 1429 1600 US LGA DCA 0 3 1
## 1430 1600 US LGA DCA 0 4 0
## 1431 1600 MQ LGA DCA 0 5 1
## 1432 1600 US LGA DCA 0 5 0
## 1433 1600 RU EWR DCA 0 6 0
## 1434 1605 RU EWR BWI 0 7 1
## 1435 1610 DH JFK IAD 0 5 0
## 1436 1610 DH JFK IAD 0 6 0
## 1437 1610 DH JFK IAD 0 7 0
## 1438 1610 DH JFK IAD 0 1 1
## 1439 1610 DH JFK IAD 0 2 0
## 1440 1610 DH JFK IAD 0 3 0
## 1441 1610 DH JFK IAD 0 4 0
## 1442 1610 DH JFK IAD 0 5 0
## 1443 1610 DH JFK IAD 0 7 0
## 1444 1610 DH JFK IAD 0 2 1
## 1445 1610 DH JFK IAD 0 3 0
## 1446 1610 DH JFK IAD 0 4 0
## 1447 1610 DH JFK IAD 0 5 0
## 1448 1610 DH JFK IAD 0 7 1
## 1449 1610 DH JFK IAD 0 1 0
## 1450 1610 DH JFK IAD 0 2 0
## 1451 1610 DH JFK IAD 0 3 0
## 1452 1610 DH JFK IAD 0 4 0
## 1453 1610 DH JFK IAD 0 5 0
## 1454 1610 DH JFK IAD 0 7 0
## 1455 1610 DH JFK IAD 0 1 0
## 1456 1610 DH JFK IAD 0 3 0
## 1457 1610 DH JFK IAD 0 4 0
## 1458 1610 DH JFK IAD 0 5 0
## 1459 1630 RU EWR DCA 0 4 0
## 1460 1630 RU EWR DCA 0 5 0
## 1461 1630 DL LGA DCA 0 6 0
## 1462 1630 DL LGA DCA 0 7 0
## 1463 1630 CO EWR DCA 0 7 1
## 1464 1630 DL LGA DCA 0 1 0
## 1465 1630 DL LGA DCA 0 2 0
## 1466 1630 RU EWR DCA 0 2 0
## 1467 1630 DL LGA DCA 0 3 0
## 1468 1630 RU EWR DCA 0 3 0
## 1469 1630 DL LGA DCA 0 4 0
## 1470 1630 RU EWR DCA 0 4 0
## 1471 1630 DL LGA DCA 0 5 0
## 1472 1630 RU EWR DCA 0 5 0
## 1473 1630 DL LGA DCA 0 6 0
## 1474 1630 DL LGA DCA 0 7 0
## 1475 1630 CO EWR DCA 0 7 0
## 1476 1630 DL LGA DCA 0 1 0
## 1477 1630 RU EWR DCA 0 1 0
## 1478 1630 DL LGA DCA 0 2 1
## 1479 1630 RU EWR DCA 0 2 0
## 1480 1630 DL LGA DCA 0 3 0
## 1481 1630 RU EWR DCA 0 3 0
## 1482 1630 DL LGA DCA 0 4 0
## 1483 1630 RU EWR DCA 0 4 0
## 1484 1630 DL LGA DCA 0 5 0
## 1485 1630 RU EWR DCA 0 5 1
## 1486 1630 DL LGA DCA 0 6 1
## 1487 1630 DL LGA DCA 0 7 0
## 1488 1630 CO EWR DCA 0 7 1
## 1489 1630 DL LGA DCA 0 1 0
## 1490 1630 RU EWR DCA 0 1 0
## 1491 1630 DL LGA DCA 0 2 1
## 1492 1630 RU EWR DCA 0 2 0
## 1493 1630 DL LGA DCA 0 3 1
## 1494 1630 RU EWR DCA 0 3 1
## 1495 1630 DL LGA DCA 0 4 1
## 1496 1630 RU EWR DCA 0 4 0
## 1497 1630 DL LGA DCA 0 5 0
## 1498 1630 RU EWR DCA 0 5 0
## 1499 1630 DL LGA DCA 0 6 0
## 1500 1630 DL LGA DCA 0 7 0
## 1501 1630 CO EWR DCA 0 7 0
## 1502 1630 DL LGA DCA 0 1 0
## 1503 1630 DL LGA DCA 0 2 1
## 1504 1630 RU EWR DCA 0 3 0
## 1505 1630 DL LGA DCA 0 4 0
## 1506 1630 RU EWR DCA 0 4 0
## 1507 1630 DL LGA DCA 0 5 0
## 1508 1630 RU EWR DCA 0 5 0
## 1509 1630 DL LGA DCA 0 6 0
## 1510 1640 DH JFK DCA 0 4 0
## 1511 1640 DH JFK DCA 0 5 0
## 1512 1640 DH JFK DCA 0 7 0
## 1513 1640 DH JFK DCA 0 1 1
## 1514 1640 DH JFK DCA 0 3 0
## 1515 1640 DH JFK DCA 0 4 1
## 1516 1640 DH JFK DCA 0 5 0
## 1517 1640 DH JFK DCA 0 6 1
## 1518 1640 DH JFK DCA 0 7 0
## 1519 1640 DH JFK DCA 0 1 0
## 1520 1640 DH JFK DCA 0 2 0
## 1521 1640 DH JFK DCA 0 3 0
## 1522 1640 DH JFK DCA 0 4 0
## 1523 1640 DH JFK DCA 0 5 0
## 1524 1640 DH JFK DCA 0 6 0
## 1525 1640 DH JFK DCA 0 7 1
## 1526 1640 DH JFK DCA 0 1 0
## 1527 1640 DH JFK DCA 0 2 0
## 1528 1640 DH JFK DCA 0 4 0
## 1529 1640 DH JFK DCA 0 5 0
## 1530 1640 DH JFK DCA 0 6 0
## 1531 1640 DH JFK DCA 0 7 0
## 1532 1640 DH JFK DCA 0 2 1
## 1533 1640 DH JFK DCA 0 3 0
## 1534 1640 DH JFK DCA 0 4 0
## 1535 1640 DH JFK DCA 0 5 0
## 1536 1640 DH JFK DCA 0 6 0
## 1537 1645 DH JFK IAD 0 4 0
## 1538 1645 DH JFK IAD 0 5 0
## 1539 1645 DH JFK IAD 0 6 0
## 1540 1645 DH JFK IAD 0 7 0
## 1541 1645 DH JFK IAD 0 1 0
## 1542 1645 DH JFK IAD 0 2 0
## 1543 1645 DH JFK IAD 0 3 0
## 1544 1645 DH JFK IAD 0 4 0
## 1545 1645 DH JFK IAD 0 5 0
## 1546 1645 DH JFK IAD 0 6 0
## 1547 1645 DH JFK IAD 0 7 0
## 1548 1645 DH JFK IAD 0 1 0
## 1549 1645 DH JFK IAD 0 2 0
## 1550 1645 DH JFK IAD 0 3 0
## 1551 1645 DH JFK IAD 0 4 0
## 1552 1645 DH JFK IAD 0 5 0
## 1553 1645 DH JFK IAD 0 6 0
## 1554 1645 DH JFK IAD 0 7 0
## 1555 1645 DH JFK IAD 0 1 0
## 1556 1645 DH JFK IAD 0 2 0
## 1557 1645 DH JFK IAD 0 3 0
## 1558 1645 DH JFK IAD 0 4 0
## 1559 1645 DH JFK IAD 0 5 0
## 1560 1645 DH JFK IAD 0 6 0
## 1561 1645 DH JFK IAD 0 7 0
## 1562 1645 DH JFK IAD 0 1 1
## 1563 1645 DH JFK IAD 0 3 0
## 1564 1645 DH JFK IAD 0 4 0
## 1565 1645 DH JFK IAD 0 5 0
## 1566 1645 DH JFK IAD 0 6 0
## 1567 1700 US LGA DCA 0 4 0
## 1568 1700 RU EWR IAD 0 4 0
## 1569 1700 US LGA DCA 0 5 0
## 1570 1700 RU EWR IAD 0 5 0
## 1571 1700 US LGA DCA 0 6 0
## 1572 1700 MQ LGA DCA 0 7 0
## 1573 1700 US LGA DCA 0 7 0
## 1574 1700 MQ LGA DCA 0 1 0
## 1575 1700 US LGA DCA 0 1 0
## 1576 1700 MQ LGA DCA 0 2 0
## 1577 1700 US LGA DCA 0 2 0
## 1578 1700 RU EWR IAD 0 2 0
## 1579 1700 US LGA DCA 0 3 0
## 1580 1700 RU EWR IAD 0 3 0
## 1581 1700 US LGA DCA 0 4 1
## 1582 1700 RU EWR IAD 0 4 0
## 1583 1700 MQ LGA DCA 0 5 0
## 1584 1700 US LGA DCA 0 5 0
## 1585 1700 RU EWR IAD 0 5 0
## 1586 1700 US LGA DCA 0 6 0
## 1587 1700 RU EWR IAD 0 6 0
## 1588 1700 MQ LGA DCA 0 7 0
## 1589 1700 US LGA DCA 0 7 0
## 1590 1700 RU EWR IAD 0 7 0
## 1591 1700 MQ LGA DCA 0 1 0
## 1592 1700 US LGA DCA 0 1 1
## 1593 1700 RU EWR IAD 0 1 0
## 1594 1700 MQ LGA DCA 0 2 1
## 1595 1700 US LGA DCA 0 2 0
## 1596 1700 RU EWR IAD 0 2 0
## 1597 1700 MQ LGA DCA 0 3 0
## 1598 1700 US LGA DCA 0 3 0
## 1599 1700 RU EWR IAD 0 3 0
## 1600 1700 MQ LGA DCA 0 4 1
## 1601 1700 US LGA DCA 0 4 0
## 1602 1700 MQ LGA DCA 0 5 1
## 1603 1700 US LGA DCA 0 5 0
## 1604 1700 RU EWR IAD 0 5 1
## 1605 1700 US LGA DCA 0 6 0
## 1606 1700 RU EWR IAD 0 6 0
## 1607 1700 MQ LGA DCA 0 7 1
## 1608 1700 MQ LGA DCA 0 1 0
## 1609 1700 US LGA DCA 0 1 0
## 1610 1700 RU EWR IAD 0 1 0
## 1611 1700 US LGA DCA 0 2 0
## 1612 1700 RU EWR IAD 0 2 0
## 1613 1700 MQ LGA DCA 0 3 0
## 1614 1700 US LGA DCA 0 3 0
## 1615 1700 RU EWR IAD 0 3 0
## 1616 1700 MQ LGA DCA 0 4 0
## 1617 1700 US LGA DCA 0 4 0
## 1618 1700 RU EWR IAD 0 4 0
## 1619 1700 MQ LGA DCA 0 5 0
## 1620 1700 US LGA DCA 0 5 0
## 1621 1700 RU EWR IAD 0 5 0
## 1622 1700 US LGA DCA 0 6 0
## 1623 1700 RU EWR IAD 0 6 0
## 1624 1700 MQ LGA DCA 0 7 0
## 1625 1700 US LGA DCA 0 7 0
## 1626 1700 RU EWR IAD 0 7 0
## 1627 1700 US LGA DCA 0 1 0
## 1628 1700 RU EWR IAD 0 1 1
## 1629 1700 US LGA DCA 0 2 0
## 1630 1700 MQ LGA DCA 0 3 1
## 1631 1700 US LGA DCA 0 3 0
## 1632 1700 RU EWR IAD 0 3 0
## 1633 1700 MQ LGA DCA 0 4 0
## 1634 1700 US LGA DCA 0 4 0
## 1635 1700 RU EWR IAD 0 4 0
## 1636 1700 MQ LGA DCA 0 5 0
## 1637 1700 US LGA DCA 0 5 1
## 1638 1700 RU EWR IAD 0 5 1
## 1639 1700 US LGA DCA 0 6 0
## 1640 1700 RU EWR IAD 0 6 0
## 1641 1710 DH EWR IAD 0 4 0
## 1642 1710 DH EWR IAD 0 6 0
## 1643 1710 DH EWR IAD 0 7 1
## 1644 1710 DH EWR IAD 0 1 1
## 1645 1710 DH EWR IAD 0 2 0
## 1646 1710 DH EWR IAD 0 3 0
## 1647 1710 DH EWR IAD 0 4 0
## 1648 1710 DH EWR IAD 0 5 0
## 1649 1710 DH EWR IAD 0 6 0
## 1650 1710 DH EWR IAD 0 7 0
## 1651 1710 DH EWR IAD 0 1 0
## 1652 1710 DH EWR IAD 0 2 0
## 1653 1710 DH EWR IAD 0 3 0
## 1654 1710 DH EWR IAD 0 5 0
## 1655 1710 DH EWR IAD 0 6 0
## 1656 1710 DH EWR IAD 0 7 1
## 1657 1710 DH EWR IAD 0 1 0
## 1658 1710 DH EWR IAD 0 2 0
## 1659 1710 DH EWR IAD 0 3 1
## 1660 1710 DH EWR IAD 0 4 0
## 1661 1710 DH EWR IAD 0 5 1
## 1662 1710 DH EWR IAD 0 6 0
## 1663 1710 DH EWR IAD 0 7 0
## 1664 1710 DH EWR IAD 1 2 1
## 1665 1710 DH EWR IAD 0 3 1
## 1666 1710 DH EWR IAD 0 4 0
## 1667 1710 DH EWR IAD 0 5 0
## 1668 1710 DH EWR IAD 0 6 0
## 1669 1715 DH LGA IAD 0 4 0
## 1670 1715 DH JFK IAD 0 4 0
## 1671 1715 DH LGA IAD 0 5 0
## 1672 1715 DH JFK IAD 0 5 0
## 1673 1715 DH LGA IAD 0 6 0
## 1674 1715 DH JFK IAD 0 6 0
## 1675 1715 DH LGA IAD 0 7 1
## 1676 1715 DH JFK IAD 0 7 0
## 1677 1715 DH LGA IAD 0 1 1
## 1678 1715 DH JFK IAD 0 1 0
## 1679 1715 DH LGA IAD 0 2 0
## 1680 1715 DH JFK IAD 0 2 1
## 1681 1715 DH LGA IAD 0 3 1
## 1682 1715 DH JFK IAD 0 3 1
## 1683 1715 DH LGA IAD 0 4 1
## 1684 1715 DH JFK IAD 0 4 0
## 1685 1715 DH LGA IAD 0 5 1
## 1686 1715 DH JFK IAD 0 5 0
## 1687 1715 DH LGA IAD 0 6 0
## 1688 1715 DH JFK IAD 0 6 0
## 1689 1715 DH LGA IAD 0 7 0
## 1690 1715 DH JFK IAD 0 7 0
## 1691 1715 DH LGA IAD 0 1 0
## 1692 1715 DH JFK IAD 0 1 0
## 1693 1715 DH LGA IAD 0 2 1
## 1694 1715 DH JFK IAD 0 2 0
## 1695 1715 DH LGA IAD 0 3 0
## 1696 1715 DH JFK IAD 0 3 0
## 1697 1715 DH JFK IAD 0 4 0
## 1698 1715 DH LGA IAD 0 5 1
## 1699 1715 DH JFK IAD 0 5 0
## 1700 1715 DH LGA IAD 0 6 0
## 1701 1715 DH JFK IAD 0 6 1
## 1702 1715 DH LGA IAD 0 7 1
## 1703 1715 DH JFK IAD 0 7 1
## 1704 1715 DH LGA IAD 0 1 0
## 1705 1715 DH JFK IAD 0 1 0
## 1706 1715 DH LGA IAD 0 2 0
## 1707 1715 DH JFK IAD 0 2 0
## 1708 1715 DH LGA IAD 0 3 0
## 1709 1715 DH JFK IAD 0 3 0
## 1710 1715 DH LGA IAD 0 4 0
## 1711 1715 DH JFK IAD 0 4 0
## 1712 1715 DH LGA IAD 0 5 0
## 1713 1715 DH JFK IAD 0 5 0
## 1714 1715 DH LGA IAD 0 6 0
## 1715 1715 DH JFK IAD 0 6 1
## 1716 1715 DH LGA IAD 0 7 1
## 1717 1715 DH JFK IAD 0 7 1
## 1718 1715 DH LGA IAD 0 1 1
## 1719 1715 DH JFK IAD 0 1 1
## 1720 1715 DH LGA IAD 1 2 1
## 1721 1715 DH JFK IAD 1 2 1
## 1722 1715 DH LGA IAD 0 3 0
## 1723 1715 DH JFK IAD 0 3 1
## 1724 1715 DH LGA IAD 0 4 1
## 1725 1715 DH JFK IAD 0 4 0
## 1726 1715 DH LGA IAD 0 5 0
## 1727 1715 DH JFK IAD 0 5 0
## 1728 1715 DH LGA IAD 0 6 0
## 1729 1715 DH JFK IAD 0 6 0
## 1730 1720 RU EWR BWI 0 4 0
## 1731 1720 RU EWR BWI 0 5 0
## 1732 1720 RU EWR BWI 0 6 0
## 1733 1720 RU EWR BWI 0 2 1
## 1734 1720 RU EWR BWI 0 3 1
## 1735 1720 RU EWR BWI 0 4 0
## 1736 1720 RU EWR BWI 0 5 0
## 1737 1720 RU EWR BWI 0 6 0
## 1738 1720 RU EWR BWI 0 7 0
## 1739 1720 RU EWR BWI 0 1 0
## 1740 1720 RU EWR BWI 0 2 1
## 1741 1720 RU EWR BWI 0 3 0
## 1742 1720 RU EWR BWI 0 4 1
## 1743 1720 RU EWR BWI 0 5 1
## 1744 1720 RU EWR BWI 0 6 0
## 1745 1720 RU EWR BWI 0 1 0
## 1746 1720 RU EWR BWI 0 2 1
## 1747 1720 RU EWR BWI 0 3 1
## 1748 1720 RU EWR BWI 0 4 1
## 1749 1720 RU EWR BWI 0 5 0
## 1750 1720 RU EWR BWI 0 6 0
## 1751 1720 RU EWR BWI 0 7 0
## 1752 1720 RU EWR BWI 0 1 1
## 1753 1720 RU EWR BWI 0 3 1
## 1754 1720 RU EWR BWI 0 4 0
## 1755 1720 RU EWR BWI 0 5 1
## 1756 1720 RU EWR BWI 0 6 0
## 1757 1725 RU EWR IAD 0 6 0
## 1758 1730 DL LGA DCA 0 4 0
## 1759 1730 CO EWR DCA 0 4 0
## 1760 1730 DL LGA DCA 0 5 0
## 1761 1730 CO EWR DCA 0 5 0
## 1762 1730 RU EWR DCA 0 6 0
## 1763 1730 RU EWR DCA 0 7 1
## 1764 1730 DL LGA DCA 0 1 0
## 1765 1730 CO EWR DCA 0 1 1
## 1766 1730 DL LGA DCA 0 2 0
## 1767 1730 CO EWR DCA 0 2 1
## 1768 1730 DL LGA DCA 0 3 0
## 1769 1730 CO EWR DCA 0 3 1
## 1770 1730 DL LGA DCA 0 4 0
## 1771 1730 CO EWR DCA 0 4 0
## 1772 1730 DL LGA DCA 0 5 0
## 1773 1730 CO EWR DCA 0 5 0
## 1774 1730 RU EWR DCA 0 6 0
## 1775 1730 DL LGA DCA 0 7 0
## 1776 1730 RU EWR DCA 0 7 0
## 1777 1730 DL LGA DCA 0 1 0
## 1778 1730 CO EWR DCA 0 1 1
## 1779 1730 DL LGA DCA 0 2 0
## 1780 1730 CO EWR DCA 0 2 1
## 1781 1730 DL LGA DCA 0 3 0
## 1782 1730 CO EWR DCA 0 3 1
## 1783 1730 DL LGA DCA 0 4 0
## 1784 1730 DL LGA DCA 0 5 0
## 1785 1730 CO EWR DCA 0 5 1
## 1786 1730 RU EWR DCA 0 6 0
## 1787 1730 CO EWR DCA 0 1 1
## 1788 1730 DL LGA DCA 0 2 0
## 1789 1730 CO EWR DCA 0 2 0
## 1790 1730 DL LGA DCA 0 3 0
## 1791 1730 CO EWR DCA 0 3 1
## 1792 1730 DL LGA DCA 0 4 1
## 1793 1730 CO EWR DCA 0 4 1
## 1794 1730 DL LGA DCA 0 5 0
## 1795 1730 CO EWR DCA 0 5 0
## 1796 1730 RU EWR DCA 0 6 0
## 1797 1730 DL LGA DCA 0 7 0
## 1798 1730 RU EWR DCA 0 7 0
## 1799 1730 DL LGA DCA 0 1 0
## 1800 1730 CO EWR DCA 1 2 1
## 1801 1730 DL LGA DCA 0 3 0
## 1802 1730 CO EWR DCA 0 3 0
## 1803 1730 DL LGA DCA 0 4 0
## 1804 1730 CO EWR DCA 0 4 0
## 1805 1730 DL LGA DCA 0 5 0
## 1806 1730 CO EWR DCA 0 5 0
## 1807 1730 RU EWR DCA 0 6 0
## 1808 1800 US LGA DCA 0 7 0
## 1809 1800 US LGA DCA 0 1 0
## 1810 1800 US LGA DCA 0 2 0
## 1811 1800 US LGA DCA 0 3 0
## 1812 1800 US LGA DCA 0 4 0
## 1813 1800 US LGA DCA 0 5 0
## 1814 1800 DH JFK IAD 0 6 0
## 1815 1800 US LGA DCA 0 7 0
## 1816 1800 US LGA DCA 0 1 0
## 1817 1800 US LGA DCA 0 2 0
## 1818 1800 US LGA DCA 0 3 0
## 1819 1800 US LGA DCA 0 4 0
## 1820 1800 US LGA DCA 0 5 0
## 1821 1800 DH JFK IAD 0 6 1
## 1822 1800 US LGA DCA 0 7 0
## 1823 1800 US LGA DCA 0 1 0
## 1824 1800 US LGA DCA 0 2 0
## 1825 1800 US LGA DCA 0 3 0
## 1826 1800 US LGA DCA 0 4 0
## 1827 1800 US LGA DCA 0 5 0
## 1828 1800 DH JFK IAD 0 6 0
## 1829 1800 US LGA DCA 0 7 0
## 1830 1800 US LGA DCA 0 1 0
## 1831 1800 US LGA DCA 0 3 0
## 1832 1800 US LGA DCA 0 4 0
## 1833 1800 US LGA DCA 0 5 0
## 1834 1800 DH JFK IAD 0 6 0
## 1835 1830 MQ JFK DCA 0 4 0
## 1836 1830 MQ JFK DCA 0 5 0
## 1837 1830 DL LGA DCA 0 6 0
## 1838 1830 MQ JFK DCA 0 6 0
## 1839 1830 DL LGA DCA 0 7 0
## 1840 1830 MQ JFK DCA 0 7 1
## 1841 1830 DL LGA DCA 0 1 0
## 1842 1830 DL LGA DCA 0 2 0
## 1843 1830 MQ JFK DCA 0 2 0
## 1844 1830 DL LGA DCA 0 3 0
## 1845 1830 MQ JFK DCA 0 3 1
## 1846 1830 DL LGA DCA 0 4 0
## 1847 1830 MQ JFK DCA 0 4 0
## 1848 1830 DL LGA DCA 0 5 0
## 1849 1830 MQ JFK DCA 0 5 1
## 1850 1830 DL LGA DCA 0 6 0
## 1851 1830 MQ JFK DCA 0 6 0
## 1852 1830 DL LGA DCA 0 7 0
## 1853 1830 MQ JFK DCA 0 7 1
## 1854 1830 DL LGA DCA 0 1 0
## 1855 1830 MQ JFK DCA 0 1 0
## 1856 1830 DL LGA DCA 0 2 0
## 1857 1830 MQ JFK DCA 0 2 1
## 1858 1830 DL LGA DCA 0 3 0
## 1859 1830 MQ JFK DCA 0 3 0
## 1860 1830 DL LGA DCA 0 4 0
## 1861 1830 MQ JFK DCA 0 4 0
## 1862 1830 DL LGA DCA 0 5 0
## 1863 1830 MQ JFK DCA 0 5 1
## 1864 1830 DL LGA DCA 0 6 0
## 1865 1830 MQ JFK DCA 0 6 0
## 1866 1830 DL LGA DCA 0 7 1
## 1867 1830 MQ JFK DCA 0 7 1
## 1868 1830 DL LGA DCA 0 1 0
## 1869 1830 MQ JFK DCA 0 1 1
## 1870 1830 DL LGA DCA 0 2 0
## 1871 1830 MQ JFK DCA 0 2 0
## 1872 1830 DL LGA DCA 0 3 0
## 1873 1830 MQ JFK DCA 0 3 0
## 1874 1830 DL LGA DCA 0 4 0
## 1875 1830 MQ JFK DCA 0 4 0
## 1876 1830 DL LGA DCA 0 5 0
## 1877 1830 MQ JFK DCA 0 5 0
## 1878 1830 DL LGA DCA 0 6 0
## 1879 1830 MQ JFK DCA 0 6 0
## 1880 1830 DL LGA DCA 0 7 0
## 1881 1830 MQ JFK DCA 0 7 0
## 1882 1830 MQ JFK DCA 1 1 1
## 1883 1830 DL LGA DCA 0 2 1
## 1884 1830 MQ JFK DCA 1 2 1
## 1885 1830 DL LGA DCA 0 3 0
## 1886 1830 MQ JFK DCA 0 3 0
## 1887 1830 DL LGA DCA 0 4 0
## 1888 1830 MQ JFK DCA 0 4 0
## 1889 1830 DL LGA DCA 0 5 0
## 1890 1830 MQ JFK DCA 0 5 0
## 1891 1830 DL LGA DCA 0 6 0
## 1892 1830 MQ JFK DCA 0 6 0
## 1893 1900 MQ LGA DCA 0 4 0
## 1894 1900 RU EWR IAD 0 4 0
## 1895 1900 RU EWR DCA 0 4 0
## 1896 1900 US LGA DCA 0 5 0
## 1897 1900 RU EWR IAD 0 5 0
## 1898 1900 RU EWR DCA 0 5 0
## 1899 1900 US LGA DCA 0 6 0
## 1900 1900 MQ LGA DCA 0 7 1
## 1901 1900 US LGA DCA 0 7 0
## 1902 1900 RU EWR IAD 0 7 1
## 1903 1900 RU EWR DCA 0 7 1
## 1904 1900 MQ LGA DCA 0 1 1
## 1905 1900 US LGA DCA 0 1 0
## 1906 1900 RU EWR DCA 0 1 1
## 1907 1900 MQ LGA DCA 0 2 0
## 1908 1900 US LGA DCA 0 2 0
## 1909 1900 CO EWR DCA 0 2 1
## 1910 1900 RU EWR IAD 0 2 1
## 1911 1900 MQ LGA DCA 0 3 1
## 1912 1900 US LGA DCA 0 3 0
## 1913 1900 CO EWR DCA 0 3 1
## 1914 1900 RU EWR IAD 0 3 1
## 1915 1900 MQ LGA DCA 0 4 0
## 1916 1900 US LGA DCA 0 4 1
## 1917 1900 CO EWR DCA 0 4 0
## 1918 1900 RU EWR IAD 0 4 0
## 1919 1900 MQ LGA DCA 0 5 1
## 1920 1900 US LGA DCA 0 5 0
## 1921 1900 CO EWR DCA 0 5 0
## 1922 1900 RU EWR IAD 0 5 0
## 1923 1900 US LGA DCA 0 6 0
## 1924 1900 MQ LGA DCA 0 7 0
## 1925 1900 US LGA DCA 0 7 0
## 1926 1900 CO EWR DCA 0 7 0
## 1927 1900 RU EWR IAD 0 7 0
## 1928 1900 MQ LGA DCA 0 1 0
## 1929 1900 US LGA DCA 0 1 0
## 1930 1900 CO EWR DCA 0 1 0
## 1931 1900 RU EWR IAD 0 1 0
## 1932 1900 MQ LGA DCA 0 2 1
## 1933 1900 US LGA DCA 0 2 0
## 1934 1900 CO EWR DCA 0 2 1
## 1935 1900 RU EWR IAD 0 2 1
## 1936 1900 MQ LGA DCA 0 3 0
## 1937 1900 US LGA DCA 0 3 0
## 1938 1900 CO EWR DCA 0 3 0
## 1939 1900 RU EWR IAD 0 3 0
## 1940 1900 MQ LGA DCA 0 4 1
## 1941 1900 US LGA DCA 0 4 1
## 1942 1900 CO EWR DCA 0 4 1
## 1943 1900 RU EWR IAD 0 4 1
## 1944 1900 MQ LGA DCA 0 5 1
## 1945 1900 US LGA DCA 0 5 1
## 1946 1900 RU EWR IAD 0 5 1
## 1947 1900 US LGA DCA 0 6 0
## 1948 1900 MQ LGA DCA 0 7 1
## 1949 1900 US LGA DCA 0 7 0
## 1950 1900 CO EWR DCA 0 7 1
## 1951 1900 MQ LGA DCA 0 1 1
## 1952 1900 US LGA DCA 0 1 0
## 1953 1900 CO EWR DCA 0 1 0
## 1954 1900 RU EWR IAD 0 1 1
## 1955 1900 MQ LGA DCA 0 2 1
## 1956 1900 US LGA DCA 0 2 0
## 1957 1900 CO EWR DCA 0 2 0
## 1958 1900 RU EWR IAD 0 2 0
## 1959 1900 MQ LGA DCA 0 3 0
## 1960 1900 US LGA DCA 0 3 0
## 1961 1900 CO EWR DCA 0 3 0
## 1962 1900 RU EWR IAD 0 3 0
## 1963 1900 MQ LGA DCA 0 4 0
## 1964 1900 US LGA DCA 0 4 0
## 1965 1900 CO EWR DCA 0 4 0
## 1966 1900 RU EWR IAD 0 4 0
## 1967 1900 MQ LGA DCA 0 5 0
## 1968 1900 US LGA DCA 0 5 0
## 1969 1900 CO EWR DCA 0 5 1
## 1970 1900 RU EWR IAD 0 5 0
## 1971 1900 US LGA DCA 0 6 0
## 1972 1900 MQ LGA DCA 0 7 0
## 1973 1900 US LGA DCA 0 7 0
## 1974 1900 CO EWR DCA 0 7 0
## 1975 1900 RU EWR IAD 0 7 1
## 1976 1900 MQ LGA DCA 1 1 1
## 1977 1900 US LGA DCA 0 1 0
## 1978 1900 CO EWR DCA 0 1 1
## 1979 1900 RU EWR IAD 0 1 1
## 1980 1900 MQ LGA DCA 0 3 1
## 1981 1900 US LGA DCA 0 3 0
## 1982 1900 CO EWR DCA 0 3 1
## 1983 1900 RU EWR IAD 0 3 0
## 1984 1900 MQ LGA DCA 0 4 0
## 1985 1900 US LGA DCA 0 4 0
## 1986 1900 CO EWR DCA 0 4 0
## 1987 1900 RU EWR IAD 0 4 0
## 1988 1900 US LGA DCA 0 5 0
## 1989 1900 CO EWR DCA 0 5 0
## 1990 1900 RU EWR IAD 0 5 1
## 1991 1900 US LGA DCA 0 6 0
## 1992 1930 DL LGA DCA 0 1 1
## 1993 1930 DL LGA DCA 0 2 0
## 1994 1930 DL LGA DCA 0 3 0
## 1995 1930 DL LGA DCA 0 4 0
## 1996 1930 DL LGA DCA 0 5 0
## 1997 1930 DL LGA DCA 0 7 0
## 1998 1930 DL LGA DCA 0 1 0
## 1999 1930 DL LGA DCA 0 2 0
## 2000 1930 DL LGA DCA 0 3 1
## 2001 1930 DL LGA DCA 0 4 1
## 2002 1930 DL LGA DCA 0 5 0
## 2003 1930 DL LGA DCA 0 1 0
## 2004 1930 DL LGA DCA 0 2 0
## 2005 1930 DL LGA DCA 0 3 0
## 2006 1930 DL LGA DCA 0 4 0
## 2007 1930 DL LGA DCA 0 5 0
## 2008 1930 DL LGA DCA 0 7 0
## 2009 1930 DL LGA DCA 0 1 0
## 2010 1930 DL LGA DCA 0 4 0
## 2011 1930 DL LGA DCA 0 5 0
## 2012 2000 US LGA DCA 0 7 0
## 2013 2000 US LGA DCA 0 1 0
## 2014 2000 US LGA DCA 0 2 0
## 2015 2000 US LGA DCA 0 3 1
## 2016 2000 US LGA DCA 0 4 1
## 2017 2000 US LGA DCA 0 5 0
## 2018 2000 US LGA DCA 0 7 0
## 2019 2000 US LGA DCA 0 1 0
## 2020 2000 US LGA DCA 0 2 0
## 2021 2000 US LGA DCA 0 3 1
## 2022 2000 US LGA DCA 0 5 0
## 2023 2000 US LGA DCA 0 7 0
## 2024 2000 US LGA DCA 0 1 0
## 2025 2000 US LGA DCA 0 2 0
## 2026 2000 US LGA DCA 0 3 0
## 2027 2000 US LGA DCA 0 4 0
## 2028 2000 US LGA DCA 0 5 0
## 2029 2000 US LGA DCA 0 7 0
## 2030 2000 US LGA DCA 0 1 0
## 2031 2000 US LGA DCA 0 3 1
## 2032 2000 US LGA DCA 0 4 0
## 2033 2000 US LGA DCA 0 5 0
## 2034 2030 DL LGA DCA 0 4 0
## 2035 2030 DL LGA DCA 0 5 0
## 2036 2030 DL LGA DCA 0 6 0
## 2037 2030 DL LGA DCA 0 7 0
## 2038 2030 DL LGA DCA 0 1 0
## 2039 2030 DL LGA DCA 0 2 0
## 2040 2030 DL LGA DCA 0 3 0
## 2041 2030 DL LGA DCA 0 4 0
## 2042 2030 DL LGA DCA 0 5 0
## 2043 2030 DL LGA DCA 0 6 0
## 2044 2030 DL LGA DCA 0 7 0
## 2045 2030 DL LGA DCA 0 1 0
## 2046 2030 DL LGA DCA 0 2 1
## 2047 2030 DL LGA DCA 0 3 1
## 2048 2030 DL LGA DCA 0 4 1
## 2049 2030 DL LGA DCA 0 5 0
## 2050 2030 DL LGA DCA 0 6 0
## 2051 2030 DL LGA DCA 0 7 0
## 2052 2030 DL LGA DCA 0 1 0
## 2053 2030 DL LGA DCA 0 2 0
## 2054 2030 DL LGA DCA 0 3 0
## 2055 2030 DL LGA DCA 0 4 0
## 2056 2030 DL LGA DCA 0 5 0
## 2057 2030 DL LGA DCA 0 6 0
## 2058 2030 DL LGA DCA 0 7 0
## 2059 2030 DL LGA DCA 0 1 0
## 2060 2030 DL LGA DCA 0 2 1
## 2061 2030 DL LGA DCA 0 3 1
## 2062 2030 DL LGA DCA 0 4 0
## 2063 2030 DL LGA DCA 0 5 0
## 2064 2030 DL LGA DCA 0 6 0
## 2065 2100 US LGA DCA 0 4 0
## 2066 2100 US LGA DCA 0 5 0
## 2067 2100 RU EWR DCA 0 5 0
## 2068 2100 US LGA DCA 0 7 0
## 2069 2100 US LGA DCA 0 1 0
## 2070 2100 RU EWR DCA 0 1 0
## 2071 2100 US LGA DCA 0 2 0
## 2072 2100 RU EWR DCA 0 2 1
## 2073 2100 US LGA DCA 0 3 0
## 2074 2100 RU EWR DCA 0 3 0
## 2075 2100 US LGA DCA 0 4 0
## 2076 2100 RU EWR DCA 0 4 0
## 2077 2100 US LGA DCA 0 5 0
## 2078 2100 RU EWR DCA 0 5 0
## 2079 2100 US LGA DCA 0 7 0
## 2080 2100 US LGA DCA 0 1 0
## 2081 2100 RU EWR DCA 0 1 0
## 2082 2100 US LGA DCA 0 2 0
## 2083 2100 RU EWR DCA 0 2 0
## 2084 2100 US LGA DCA 0 3 0
## 2085 2100 RU EWR DCA 0 3 0
## 2086 2100 US LGA DCA 0 4 1
## 2087 2100 RU EWR DCA 0 4 1
## 2088 2100 US LGA DCA 0 5 0
## 2089 2100 RU EWR DCA 0 5 0
## 2090 2100 US LGA DCA 0 7 0
## 2091 2100 US LGA DCA 0 1 0
## 2092 2100 RU EWR DCA 0 1 0
## 2093 2100 US LGA DCA 0 2 0
## 2094 2100 RU EWR DCA 0 2 0
## 2095 2100 US LGA DCA 0 3 0
## 2096 2100 RU EWR DCA 0 3 0
## 2097 2100 US LGA DCA 0 4 1
## 2098 2100 RU EWR DCA 0 4 0
## 2099 2100 US LGA DCA 0 5 0
## 2100 2100 RU EWR DCA 0 5 0
## 2101 2100 US LGA DCA 0 7 1
## 2102 2100 US LGA DCA 0 1 1
## 2103 2100 RU EWR DCA 0 1 0
## 2104 2100 US LGA DCA 0 3 0
## 2105 2100 RU EWR DCA 0 3 1
## 2106 2100 US LGA DCA 0 4 0
## 2107 2100 RU EWR DCA 0 4 0
## 2108 2100 US LGA DCA 0 5 0
## 2109 2100 RU EWR DCA 0 5 0
## 2110 2120 DH JFK IAD 0 4 0
## 2111 2120 DH LGA IAD 0 4 0
## 2112 2120 DH EWR IAD 0 4 0
## 2113 2120 DH JFK IAD 0 5 1
## 2114 2120 DH LGA IAD 0 5 0
## 2115 2120 DH JFK IAD 0 6 1
## 2116 2120 DH LGA IAD 0 6 0
## 2117 2120 DH EWR IAD 0 6 0
## 2118 2120 DH JFK IAD 0 7 0
## 2119 2120 DH LGA IAD 0 7 0
## 2120 2120 DH EWR IAD 0 7 1
## 2121 2120 DH JFK IAD 0 1 1
## 2122 2120 DH LGA IAD 0 1 0
## 2123 2120 DH EWR IAD 0 1 1
## 2124 2120 DH JFK IAD 0 2 1
## 2125 2120 DH LGA IAD 0 2 0
## 2126 2120 DH EWR IAD 0 2 0
## 2127 2120 DH JFK IAD 0 3 0
## 2128 2120 DH EWR IAD 0 3 0
## 2129 2120 DH LGA IAD 0 4 1
## 2130 2120 DH JFK IAD 0 4 0
## 2131 2120 DH EWR IAD 0 4 0
## 2132 2120 DH LGA IAD 0 5 0
## 2133 2120 DH JFK IAD 0 5 0
## 2134 2120 DH EWR IAD 0 5 0
## 2135 2120 DH LGA IAD 0 6 0
## 2136 2120 DH JFK IAD 0 6 0
## 2137 2120 DH EWR IAD 0 6 0
## 2138 2120 DH LGA IAD 0 7 0
## 2139 2120 DH JFK IAD 0 7 1
## 2140 2120 DH EWR IAD 0 7 0
## 2141 2120 DH LGA IAD 0 1 0
## 2142 2120 DH JFK IAD 0 1 0
## 2143 2120 DH EWR IAD 0 1 0
## 2144 2120 DH LGA IAD 0 2 0
## 2145 2120 DH JFK IAD 0 2 0
## 2146 2120 DH EWR IAD 0 2 0
## 2147 2120 DH LGA IAD 0 3 0
## 2148 2120 DH JFK IAD 0 3 0
## 2149 2120 DH EWR IAD 0 3 1
## 2150 2120 DH LGA IAD 0 4 1
## 2151 2120 DH JFK IAD 0 4 0
## 2152 2120 DH EWR IAD 0 4 0
## 2153 2120 DH LGA IAD 0 5 0
## 2154 2120 DH JFK IAD 0 5 0
## 2155 2120 DH EWR IAD 0 5 0
## 2156 2120 DH LGA IAD 0 6 1
## 2157 2120 DH JFK IAD 0 6 1
## 2158 2120 DH EWR IAD 0 6 1
## 2159 2120 DH LGA IAD 0 7 0
## 2160 2120 DH JFK IAD 0 7 0
## 2161 2120 DH EWR IAD 0 7 0
## 2162 2120 DH LGA IAD 0 1 1
## 2163 2120 DH JFK IAD 0 1 0
## 2164 2120 DH EWR IAD 0 1 1
## 2165 2120 DH LGA IAD 0 2 0
## 2166 2120 DH JFK IAD 0 2 0
## 2167 2120 DH EWR IAD 0 2 0
## 2168 2120 DH LGA IAD 0 3 1
## 2169 2120 DH JFK IAD 0 3 0
## 2170 2120 DH EWR IAD 0 3 0
## 2171 2120 DH LGA IAD 0 4 0
## 2172 2120 DH JFK IAD 0 4 0
## 2173 2120 DH EWR IAD 0 4 0
## 2174 2120 DH LGA IAD 0 5 1
## 2175 2120 DH JFK IAD 0 5 0
## 2176 2120 DH EWR IAD 0 5 1
## 2177 2120 DH LGA IAD 0 6 0
## 2178 2120 DH JFK IAD 0 6 0
## 2179 2120 DH EWR IAD 0 6 0
## 2180 2120 DH LGA IAD 0 7 1
## 2181 2120 DH JFK IAD 1 7 1
## 2182 2120 DH EWR IAD 0 7 1
## 2183 2120 DH LGA IAD 0 1 1
## 2184 2120 DH JFK IAD 0 1 0
## 2185 2120 DH EWR IAD 0 1 1
## 2186 2120 DH JFK IAD 1 2 1
## 2187 2120 DH EWR IAD 0 2 1
## 2188 2120 DH LGA IAD 0 3 1
## 2189 2120 DH JFK IAD 0 3 0
## 2190 2120 DH EWR IAD 0 3 0
## 2191 2120 DH LGA IAD 0 4 0
## 2192 2120 DH JFK IAD 0 4 0
## 2193 2120 DH EWR IAD 0 4 1
## 2194 2120 DH LGA IAD 0 5 0
## 2195 2120 DH JFK IAD 0 5 1
## 2196 2120 DH EWR IAD 0 5 0
## 2197 2120 DH LGA IAD 0 6 0
## 2198 2120 DH JFK IAD 0 6 0
## 2199 2120 DH EWR IAD 0 6 0
## 2200 2130 RU EWR DCA 0 7 0
## 2201 2130 RU EWR DCA 0 7 1
## bin_fd
## 1 1
## 2 1
## 3 1
## 4 1
## 5 1
## 6 1
## 7 1
## 8 1
## 9 1
## 10 1
## 11 1
## 12 1
## 13 1
## 14 1
## 15 1
## 16 1
## 17 1
## 18 1
## 19 1
## 20 1
## 21 1
## 22 1
## 23 1
## 24 1
## 25 1
## 26 1
## 27 1
## 28 1
## 29 1
## 30 1
## 31 1
## 32 1
## 33 1
## 34 1
## 35 1
## 36 1
## 37 1
## 38 1
## 39 1
## 40 1
## 41 1
## 42 1
## 43 1
## 44 1
## 45 1
## 46 1
## 47 1
## 48 1
## 49 1
## 50 1
## 51 1
## 52 1
## 53 1
## 54 1
## 55 1
## 56 1
## 57 1
## 58 1
## 59 1
## 60 1
## 61 1
## 62 1
## 63 1
## 64 1
## 65 1
## 66 1
## 67 1
## 68 1
## 69 1
## 70 1
## 71 1
## 72 1
## 73 1
## 74 1
## 75 1
## 76 1
## 77 1
## 78 1
## 79 1
## 80 1
## 81 1
## 82 1
## 83 1
## 84 1
## 85 1
## 86 1
## 87 1
## 88 1
## 89 1
## 90 1
## 91 1
## 92 1
## 93 1
## 94 1
## 95 1
## 96 1
## 97 1
## 98 1
## 99 1
## 100 1
## 101 1
## 102 1
## 103 1
## 104 1
## 105 1
## 106 1
## 107 1
## 108 1
## 109 1
## 110 1
## 111 1
## 112 1
## 113 1
## 114 1
## 115 1
## 116 1
## 117 1
## 118 1
## 119 1
## 120 1
## 121 1
## 122 1
## 123 1
## 124 1
## 125 1
## 126 1
## 127 1
## 128 1
## 129 1
## 130 1
## 131 1
## 132 1
## 133 1
## 134 1
## 135 1
## 136 1
## 137 1
## 138 1
## 139 1
## 140 1
## 141 1
## 142 1
## 143 1
## 144 1
## 145 1
## 146 1
## 147 1
## 148 1
## 149 1
## 150 1
## 151 1
## 152 1
## 153 1
## 154 1
## 155 1
## 156 1
## 157 1
## 158 1
## 159 1
## 160 1
## 161 1
## 162 1
## 163 1
## 164 1
## 165 1
## 166 1
## 167 1
## 168 1
## 169 1
## 170 1
## 171 1
## 172 1
## 173 1
## 174 1
## 175 1
## 176 1
## 177 1
## 178 1
## 179 1
## 180 1
## 181 1
## 182 1
## 183 1
## 184 1
## 185 1
## 186 1
## 187 1
## 188 1
## 189 1
## 190 1
## 191 1
## 192 1
## 193 1
## 194 1
## 195 1
## 196 1
## 197 1
## 198 1
## 199 1
## 200 1
## 201 1
## 202 1
## 203 1
## 204 1
## 205 1
## 206 1
## 207 1
## 208 1
## 209 1
## 210 1
## 211 1
## 212 1
## 213 1
## 214 1
## 215 1
## 216 1
## 217 1
## 218 1
## 219 1
## 220 1
## 221 1
## 222 1
## 223 1
## 224 1
## 225 1
## 226 1
## 227 1
## 228 1
## 229 1
## 230 1
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
## 236 1
## 237 1
## 238 1
## 239 1
## 240 1
## 241 1
## 242 1
## 243 1
## 244 1
## 245 1
## 246 1
## 247 1
## 248 1
## 249 1
## 250 1
## 251 1
## 252 1
## 253 1
## 254 1
## 255 1
## 256 1
## 257 1
## 258 1
## 259 1
## 260 1
## 261 1
## 262 1
## 263 1
## 264 1
## 265 1
## 266 1
## 267 1
## 268 1
## 269 1
## 270 1
## 271 1
## 272 1
## 273 1
## 274 1
## 275 1
## 276 1
## 277 1
## 278 1
## 279 1
## 280 1
## 281 1
## 282 1
## 283 1
## 284 1
## 285 1
## 286 1
## 287 1
## 288 1
## 289 1
## 290 1
## 291 1
## 292 1
## 293 1
## 294 1
## 295 1
## 296 1
## 297 1
## 298 1
## 299 1
## 300 1
## 301 1
## 302 1
## 303 1
## 304 1
## 305 1
## 306 1
## 307 1
## 308 1
## 309 1
## 310 1
## 311 1
## 312 1
## 313 1
## 314 1
## 315 1
## 316 1
## 317 1
## 318 1
## 319 1
## 320 1
## 321 1
## 322 1
## 323 1
## 324 1
## 325 1
## 326 1
## 327 1
## 328 1
## 329 1
## 330 1
## 331 1
## 332 1
## 333 1
## 334 1
## 335 1
## 336 1
## 337 1
## 338 1
## 339 1
## 340 1
## 341 1
## 342 1
## 343 1
## 344 1
## 345 1
## 346 1
## 347 1
## 348 1
## 349 1
## 350 1
## 351 1
## 352 1
## 353 1
## 354 1
## 355 1
## 356 1
## 357 1
## 358 1
## 359 1
## 360 1
## 361 1
## 362 1
## 363 1
## 364 1
## 365 1
## 366 1
## 367 1
## 368 1
## 369 1
## 370 1
## 371 1
## 372 1
## 373 1
## 374 1
## 375 1
## 376 1
## 377 1
## 378 1
## 379 1
## 380 1
## 381 1
## 382 1
## 383 1
## 384 1
## 385 1
## 386 1
## 387 1
## 388 1
## 389 1
## 390 1
## 391 1
## 392 1
## 393 1
## 394 1
## 395 1
## 396 1
## 397 1
## 398 1
## 399 1
## 400 1
## 401 1
## 402 1
## 403 1
## 404 1
## 405 1
## 406 1
## 407 1
## 408 1
## 409 1
## 410 1
## 411 1
## 412 1
## 413 1
## 414 1
## 415 1
## 416 1
## 417 1
## 418 1
## 419 1
## 420 1
## 421 1
## 422 1
## 423 1
## 424 1
## 425 1
## 426 1
## 427 1
## 428 1
## 429 1
## 430 1
## 431 1
## 432 1
## 433 1
## 434 1
## 435 1
## 436 1
## 437 1
## 438 1
## 439 1
## 440 1
## 441 1
## 442 1
## 443 1
## 444 1
## 445 1
## 446 1
## 447 1
## 448 1
## 449 1
## 450 1
## 451 1
## 452 1
## 453 1
## 454 1
## 455 1
## 456 1
## 457 1
## 458 1
## 459 1
## 460 1
## 461 1
## 462 1
## 463 1
## 464 1
## 465 1
## 466 1
## 467 1
## 468 1
## 469 1
## 470 1
## 471 1
## 472 1
## 473 1
## 474 1
## 475 1
## 476 1
## 477 1
## 478 1
## 479 1
## 480 1
## 481 1
## 482 1
## 483 1
## 484 1
## 485 1
## 486 1
## 487 1
## 488 1
## 489 1
## 490 1
## 491 1
## 492 1
## 493 1
## 494 1
## 495 1
## 496 1
## 497 1
## 498 1
## 499 1
## 500 1
## 501 1
## 502 1
## 503 1
## 504 1
## 505 1
## 506 1
## 507 1
## 508 1
## 509 1
## 510 1
## 511 1
## 512 1
## 513 1
## 514 1
## 515 1
## 516 1
## 517 1
## 518 1
## 519 1
## 520 1
## 521 1
## 522 1
## 523 1
## 524 1
## 525 1
## 526 1
## 527 1
## 528 1
## 529 1
## 530 1
## 531 1
## 532 1
## 533 1
## 534 1
## 535 1
## 536 1
## 537 1
## 538 1
## 539 1
## 540 1
## 541 1
## 542 1
## 543 1
## 544 1
## 545 1
## 546 1
## 547 1
## 548 1
## 549 1
## 550 1
## 551 1
## 552 1
## 553 1
## 554 1
## 555 1
## 556 1
## 557 1
## 558 1
## 559 1
## 560 1
## 561 1
## 562 1
## 563 1
## 564 1
## 565 1
## 566 1
## 567 1
## 568 1
## 569 1
## 570 1
## 571 1
## 572 1
## 573 1
## 574 1
## 575 1
## 576 1
## 577 1
## 578 1
## 579 1
## 580 1
## 581 1
## 582 1
## 583 1
## 584 1
## 585 1
## 586 1
## 587 1
## 588 1
## 589 1
## 590 1
## 591 1
## 592 1
## 593 1
## 594 1
## 595 1
## 596 1
## 597 1
## 598 1
## 599 1
## 600 1
## 601 1
## 602 1
## 603 1
## 604 1
## 605 1
## 606 1
## 607 1
## 608 1
## 609 1
## 610 1
## 611 1
## 612 1
## 613 1
## 614 1
## 615 1
## 616 1
## 617 1
## 618 1
## 619 1
## 620 1
## 621 1
## 622 1
## 623 1
## 624 1
## 625 1
## 626 1
## 627 1
## 628 1
## 629 1
## 630 1
## 631 1
## 632 1
## 633 1
## 634 1
## 635 1
## 636 1
## 637 1
## 638 1
## 639 1
## 640 1
## 641 1
## 642 1
## 643 1
## 644 1
## 645 1
## 646 1
## 647 1
## 648 1
## 649 1
## 650 1
## 651 1
## 652 1
## 653 1
## 654 1
## 655 1
## 656 1
## 657 1
## 658 1
## 659 1
## 660 1
## 661 1
## 662 1
## 663 1
## 664 1
## 665 1
## 666 1
## 667 1
## 668 1
## 669 1
## 670 1
## 671 1
## 672 1
## 673 1
## 674 1
## 675 1
## 676 1
## 677 1
## 678 1
## 679 1
## 680 1
## 681 1
## 682 1
## 683 1
## 684 1
## 685 1
## 686 1
## 687 1
## 688 1
## 689 1
## 690 1
## 691 1
## 692 1
## 693 1
## 694 1
## 695 1
## 696 1
## 697 1
## 698 1
## 699 1
## 700 2
## 701 2
## 702 2
## 703 2
## 704 2
## 705 2
## 706 2
## 707 2
## 708 2
## 709 2
## 710 2
## 711 2
## 712 2
## 713 2
## 714 2
## 715 2
## 716 2
## 717 2
## 718 2
## 719 2
## 720 2
## 721 2
## 722 2
## 723 2
## 724 2
## 725 2
## 726 2
## 727 2
## 728 2
## 729 2
## 730 2
## 731 2
## 732 2
## 733 2
## 734 2
## 735 2
## 736 2
## 737 2
## 738 2
## 739 2
## 740 2
## 741 2
## 742 2
## 743 2
## 744 2
## 745 2
## 746 2
## 747 2
## 748 2
## 749 2
## 750 2
## 751 2
## 752 2
## 753 2
## 754 2
## 755 2
## 756 2
## 757 2
## 758 2
## 759 2
## 760 2
## 761 2
## 762 2
## 763 2
## 764 2
## 765 2
## 766 2
## 767 2
## 768 2
## 769 2
## 770 2
## 771 2
## 772 2
## 773 2
## 774 2
## 775 2
## 776 2
## 777 2
## 778 2
## 779 2
## 780 2
## 781 2
## 782 2
## 783 2
## 784 2
## 785 2
## 786 2
## 787 2
## 788 2
## 789 2
## 790 2
## 791 2
## 792 2
## 793 2
## 794 2
## 795 2
## 796 2
## 797 2
## 798 2
## 799 2
## 800 2
## 801 2
## 802 2
## 803 2
## 804 2
## 805 2
## 806 2
## 807 2
## 808 2
## 809 2
## 810 2
## 811 2
## 812 2
## 813 2
## 814 2
## 815 2
## 816 2
## 817 2
## 818 2
## 819 2
## 820 2
## 821 2
## 822 2
## 823 2
## 824 2
## 825 2
## 826 2
## 827 2
## 828 2
## 829 2
## 830 2
## 831 2
## 832 2
## 833 2
## 834 2
## 835 2
## 836 2
## 837 2
## 838 2
## 839 2
## 840 2
## 841 2
## 842 3
## 843 3
## 844 3
## 845 3
## 846 3
## 847 3
## 848 3
## 849 3
## 850 3
## 851 3
## 852 3
## 853 3
## 854 3
## 855 3
## 856 3
## 857 3
## 858 3
## 859 3
## 860 3
## 861 3
## 862 3
## 863 3
## 864 3
## 865 3
## 866 3
## 867 3
## 868 3
## 869 3
## 870 3
## 871 3
## 872 3
## 873 3
## 874 3
## 875 3
## 876 3
## 877 3
## 878 3
## 879 3
## 880 3
## 881 3
## 882 3
## 883 3
## 884 3
## 885 3
## 886 3
## 887 3
## 888 3
## 889 3
## 890 3
## 891 3
## 892 3
## 893 3
## 894 3
## 895 3
## 896 3
## 897 3
## 898 3
## 899 3
## 900 3
## 901 3
## 902 3
## 903 3
## 904 3
## 905 3
## 906 3
## 907 3
## 908 3
## 909 3
## 910 3
## 911 3
## 912 3
## 913 3
## 914 3
## 915 3
## 916 3
## 917 3
## 918 3
## 919 3
## 920 3
## 921 3
## 922 3
## 923 3
## 924 3
## 925 3
## 926 3
## 927 3
## 928 3
## 929 3
## 930 3
## 931 3
## 932 3
## 933 3
## 934 3
## 935 3
## 936 3
## 937 3
## 938 3
## 939 3
## 940 3
## 941 3
## 942 3
## 943 3
## 944 3
## 945 3
## 946 3
## 947 3
## 948 3
## 949 3
## 950 3
## 951 3
## 952 3
## 953 3
## 954 3
## 955 3
## 956 3
## 957 3
## 958 3
## 959 3
## 960 3
## 961 3
## 962 3
## 963 3
## 964 3
## 965 3
## 966 3
## 967 3
## 968 3
## 969 3
## 970 3
## 971 3
## 972 3
## 973 3
## 974 3
## 975 3
## 976 3
## 977 3
## 978 3
## 979 3
## 980 3
## 981 3
## 982 3
## 983 3
## 984 3
## 985 3
## 986 3
## 987 3
## 988 3
## 989 3
## 990 3
## 991 3
## 992 3
## 993 3
## 994 3
## 995 3
## 996 3
## 997 3
## 998 3
## 999 4
## 1000 4
## 1001 4
## 1002 4
## 1003 4
## 1004 4
## 1005 4
## 1006 4
## 1007 4
## 1008 4
## 1009 4
## 1010 4
## 1011 4
## 1012 4
## 1013 4
## 1014 4
## 1015 4
## 1016 4
## 1017 4
## 1018 4
## 1019 4
## 1020 4
## 1021 4
## 1022 4
## 1023 4
## 1024 4
## 1025 4
## 1026 4
## 1027 4
## 1028 4
## 1029 4
## 1030 4
## 1031 4
## 1032 4
## 1033 4
## 1034 4
## 1035 4
## 1036 4
## 1037 4
## 1038 4
## 1039 4
## 1040 4
## 1041 4
## 1042 4
## 1043 4
## 1044 4
## 1045 4
## 1046 4
## 1047 4
## 1048 4
## 1049 4
## 1050 4
## 1051 4
## 1052 4
## 1053 4
## 1054 4
## 1055 4
## 1056 4
## 1057 4
## 1058 4
## 1059 4
## 1060 4
## 1061 4
## 1062 4
## 1063 4
## 1064 4
## 1065 4
## 1066 4
## 1067 4
## 1068 4
## 1069 4
## 1070 4
## 1071 4
## 1072 4
## 1073 4
## 1074 4
## 1075 4
## 1076 4
## 1077 4
## 1078 4
## 1079 4
## 1080 4
## 1081 4
## 1082 4
## 1083 4
## 1084 4
## 1085 4
## 1086 4
## 1087 4
## 1088 4
## 1089 4
## 1090 4
## 1091 4
## 1092 4
## 1093 4
## 1094 4
## 1095 4
## 1096 4
## 1097 4
## 1098 4
## 1099 4
## 1100 4
## 1101 4
## 1102 4
## 1103 4
## 1104 4
## 1105 4
## 1106 4
## 1107 4
## 1108 4
## 1109 4
## 1110 4
## 1111 4
## 1112 4
## 1113 4
## 1114 4
## 1115 4
## 1116 4
## 1117 4
## 1118 4
## 1119 4
## 1120 4
## 1121 4
## 1122 4
## 1123 4
## 1124 4
## 1125 4
## 1126 4
## 1127 4
## 1128 4
## 1129 4
## 1130 4
## 1131 4
## 1132 4
## 1133 4
## 1134 4
## 1135 4
## 1136 4
## 1137 4
## 1138 4
## 1139 4
## 1140 4
## 1141 4
## 1142 4
## 1143 4
## 1144 4
## 1145 4
## 1146 4
## 1147 4
## 1148 4
## 1149 4
## 1150 4
## 1151 4
## 1152 4
## 1153 4
## 1154 4
## 1155 4
## 1156 4
## 1157 4
## 1158 4
## 1159 4
## 1160 4
## 1161 4
## 1162 4
## 1163 4
## 1164 4
## 1165 4
## 1166 4
## 1167 4
## 1168 4
## 1169 4
## 1170 4
## 1171 4
## 1172 4
## 1173 4
## 1174 4
## 1175 4
## 1176 4
## 1177 4
## 1178 4
## 1179 4
## 1180 4
## 1181 4
## 1182 4
## 1183 4
## 1184 4
## 1185 4
## 1186 4
## 1187 4
## 1188 4
## 1189 4
## 1190 4
## 1191 4
## 1192 4
## 1193 4
## 1194 4
## 1195 4
## 1196 4
## 1197 4
## 1198 4
## 1199 4
## 1200 4
## 1201 4
## 1202 4
## 1203 4
## 1204 4
## 1205 4
## 1206 4
## 1207 4
## 1208 4
## 1209 4
## 1210 4
## 1211 4
## 1212 4
## 1213 4
## 1214 4
## 1215 4
## 1216 4
## 1217 4
## 1218 4
## 1219 4
## 1220 4
## 1221 4
## 1222 4
## 1223 4
## 1224 4
## 1225 4
## 1226 4
## 1227 4
## 1228 4
## 1229 4
## 1230 4
## 1231 4
## 1232 4
## 1233 4
## 1234 4
## 1235 5
## 1236 5
## 1237 5
## 1238 5
## 1239 5
## 1240 5
## 1241 5
## 1242 5
## 1243 5
## 1244 5
## 1245 5
## 1246 5
## 1247 5
## 1248 5
## 1249 5
## 1250 5
## 1251 5
## 1252 5
## 1253 5
## 1254 5
## 1255 5
## 1256 5
## 1257 5
## 1258 5
## 1259 5
## 1260 5
## 1261 5
## 1262 5
## 1263 5
## 1264 5
## 1265 5
## 1266 5
## 1267 5
## 1268 5
## 1269 5
## 1270 5
## 1271 5
## 1272 5
## 1273 5
## 1274 5
## 1275 5
## 1276 5
## 1277 5
## 1278 5
## 1279 5
## 1280 5
## 1281 5
## 1282 5
## 1283 5
## 1284 5
## 1285 5
## 1286 5
## 1287 5
## 1288 5
## 1289 5
## 1290 5
## 1291 5
## 1292 5
## 1293 5
## 1294 5
## 1295 5
## 1296 5
## 1297 5
## 1298 5
## 1299 5
## 1300 5
## 1301 5
## 1302 5
## 1303 5
## 1304 5
## 1305 5
## 1306 5
## 1307 5
## 1308 5
## 1309 5
## 1310 5
## 1311 5
## 1312 5
## 1313 5
## 1314 5
## 1315 5
## 1316 5
## 1317 5
## 1318 5
## 1319 5
## 1320 5
## 1321 5
## 1322 5
## 1323 5
## 1324 5
## 1325 5
## 1326 5
## 1327 5
## 1328 5
## 1329 5
## 1330 5
## 1331 5
## 1332 5
## 1333 5
## 1334 5
## 1335 5
## 1336 5
## 1337 5
## 1338 5
## 1339 5
## 1340 5
## 1341 5
## 1342 5
## 1343 5
## 1344 5
## 1345 5
## 1346 5
## 1347 5
## 1348 5
## 1349 5
## 1350 5
## 1351 5
## 1352 5
## 1353 5
## 1354 5
## 1355 5
## 1356 5
## 1357 5
## 1358 5
## 1359 5
## 1360 5
## 1361 5
## 1362 5
## 1363 5
## 1364 5
## 1365 5
## 1366 5
## 1367 5
## 1368 5
## 1369 5
## 1370 5
## 1371 5
## 1372 5
## 1373 5
## 1374 5
## 1375 5
## 1376 5
## 1377 5
## 1378 5
## 1379 5
## 1380 5
## 1381 5
## 1382 5
## 1383 5
## 1384 5
## 1385 5
## 1386 5
## 1387 5
## 1388 5
## 1389 6
## 1390 6
## 1391 6
## 1392 6
## 1393 6
## 1394 6
## 1395 6
## 1396 6
## 1397 6
## 1398 6
## 1399 6
## 1400 6
## 1401 6
## 1402 6
## 1403 6
## 1404 6
## 1405 6
## 1406 6
## 1407 6
## 1408 6
## 1409 6
## 1410 6
## 1411 6
## 1412 6
## 1413 6
## 1414 6
## 1415 6
## 1416 6
## 1417 6
## 1418 6
## 1419 6
## 1420 6
## 1421 6
## 1422 6
## 1423 6
## 1424 6
## 1425 6
## 1426 6
## 1427 6
## 1428 6
## 1429 6
## 1430 6
## 1431 6
## 1432 6
## 1433 6
## 1434 6
## 1435 6
## 1436 6
## 1437 6
## 1438 6
## 1439 6
## 1440 6
## 1441 6
## 1442 6
## 1443 6
## 1444 6
## 1445 6
## 1446 6
## 1447 6
## 1448 6
## 1449 6
## 1450 6
## 1451 6
## 1452 6
## 1453 6
## 1454 6
## 1455 6
## 1456 6
## 1457 6
## 1458 6
## 1459 6
## 1460 6
## 1461 6
## 1462 6
## 1463 6
## 1464 6
## 1465 6
## 1466 6
## 1467 6
## 1468 6
## 1469 6
## 1470 6
## 1471 6
## 1472 6
## 1473 6
## 1474 6
## 1475 6
## 1476 6
## 1477 6
## 1478 6
## 1479 6
## 1480 6
## 1481 6
## 1482 6
## 1483 6
## 1484 6
## 1485 6
## 1486 6
## 1487 6
## 1488 6
## 1489 6
## 1490 6
## 1491 6
## 1492 6
## 1493 6
## 1494 6
## 1495 6
## 1496 6
## 1497 6
## 1498 6
## 1499 6
## 1500 6
## 1501 6
## 1502 6
## 1503 6
## 1504 6
## 1505 6
## 1506 6
## 1507 6
## 1508 6
## 1509 6
## 1510 6
## 1511 6
## 1512 6
## 1513 6
## 1514 6
## 1515 6
## 1516 6
## 1517 6
## 1518 6
## 1519 6
## 1520 6
## 1521 6
## 1522 6
## 1523 6
## 1524 6
## 1525 6
## 1526 6
## 1527 6
## 1528 6
## 1529 6
## 1530 6
## 1531 6
## 1532 6
## 1533 6
## 1534 6
## 1535 6
## 1536 6
## 1537 6
## 1538 6
## 1539 6
## 1540 6
## 1541 6
## 1542 6
## 1543 6
## 1544 6
## 1545 6
## 1546 6
## 1547 6
## 1548 6
## 1549 6
## 1550 6
## 1551 6
## 1552 6
## 1553 6
## 1554 6
## 1555 6
## 1556 6
## 1557 6
## 1558 6
## 1559 6
## 1560 6
## 1561 6
## 1562 6
## 1563 6
## 1564 6
## 1565 6
## 1566 6
## 1567 7
## 1568 7
## 1569 7
## 1570 7
## 1571 7
## 1572 7
## 1573 7
## 1574 7
## 1575 7
## 1576 7
## 1577 7
## 1578 7
## 1579 7
## 1580 7
## 1581 7
## 1582 7
## 1583 7
## 1584 7
## 1585 7
## 1586 7
## 1587 7
## 1588 7
## 1589 7
## 1590 7
## 1591 7
## 1592 7
## 1593 7
## 1594 7
## 1595 7
## 1596 7
## 1597 7
## 1598 7
## 1599 7
## 1600 7
## 1601 7
## 1602 7
## 1603 7
## 1604 7
## 1605 7
## 1606 7
## 1607 7
## 1608 7
## 1609 7
## 1610 7
## 1611 7
## 1612 7
## 1613 7
## 1614 7
## 1615 7
## 1616 7
## 1617 7
## 1618 7
## 1619 7
## 1620 7
## 1621 7
## 1622 7
## 1623 7
## 1624 7
## 1625 7
## 1626 7
## 1627 7
## 1628 7
## 1629 7
## 1630 7
## 1631 7
## 1632 7
## 1633 7
## 1634 7
## 1635 7
## 1636 7
## 1637 7
## 1638 7
## 1639 7
## 1640 7
## 1641 7
## 1642 7
## 1643 7
## 1644 7
## 1645 7
## 1646 7
## 1647 7
## 1648 7
## 1649 7
## 1650 7
## 1651 7
## 1652 7
## 1653 7
## 1654 7
## 1655 7
## 1656 7
## 1657 7
## 1658 7
## 1659 7
## 1660 7
## 1661 7
## 1662 7
## 1663 7
## 1664 7
## 1665 7
## 1666 7
## 1667 7
## 1668 7
## 1669 7
## 1670 7
## 1671 7
## 1672 7
## 1673 7
## 1674 7
## 1675 7
## 1676 7
## 1677 7
## 1678 7
## 1679 7
## 1680 7
## 1681 7
## 1682 7
## 1683 7
## 1684 7
## 1685 7
## 1686 7
## 1687 7
## 1688 7
## 1689 7
## 1690 7
## 1691 7
## 1692 7
## 1693 7
## 1694 7
## 1695 7
## 1696 7
## 1697 7
## 1698 7
## 1699 7
## 1700 7
## 1701 7
## 1702 7
## 1703 7
## 1704 7
## 1705 7
## 1706 7
## 1707 7
## 1708 7
## 1709 7
## 1710 7
## 1711 7
## 1712 7
## 1713 7
## 1714 7
## 1715 7
## 1716 7
## 1717 7
## 1718 7
## 1719 7
## 1720 7
## 1721 7
## 1722 7
## 1723 7
## 1724 7
## 1725 7
## 1726 7
## 1727 7
## 1728 7
## 1729 7
## 1730 7
## 1731 7
## 1732 7
## 1733 7
## 1734 7
## 1735 7
## 1736 7
## 1737 7
## 1738 7
## 1739 7
## 1740 7
## 1741 7
## 1742 7
## 1743 7
## 1744 7
## 1745 7
## 1746 7
## 1747 7
## 1748 7
## 1749 7
## 1750 7
## 1751 7
## 1752 7
## 1753 7
## 1754 7
## 1755 7
## 1756 7
## 1757 7
## 1758 7
## 1759 7
## 1760 7
## 1761 7
## 1762 7
## 1763 7
## 1764 7
## 1765 7
## 1766 7
## 1767 7
## 1768 7
## 1769 7
## 1770 7
## 1771 7
## 1772 7
## 1773 7
## 1774 7
## 1775 7
## 1776 7
## 1777 7
## 1778 7
## 1779 7
## 1780 7
## 1781 7
## 1782 7
## 1783 7
## 1784 7
## 1785 7
## 1786 7
## 1787 7
## 1788 7
## 1789 7
## 1790 7
## 1791 7
## 1792 7
## 1793 7
## 1794 7
## 1795 7
## 1796 7
## 1797 7
## 1798 7
## 1799 7
## 1800 7
## 1801 7
## 1802 7
## 1803 7
## 1804 7
## 1805 7
## 1806 7
## 1807 7
## 1808 8
## 1809 8
## 1810 8
## 1811 8
## 1812 8
## 1813 8
## 1814 8
## 1815 8
## 1816 8
## 1817 8
## 1818 8
## 1819 8
## 1820 8
## 1821 8
## 1822 8
## 1823 8
## 1824 8
## 1825 8
## 1826 8
## 1827 8
## 1828 8
## 1829 8
## 1830 8
## 1831 8
## 1832 8
## 1833 8
## 1834 8
## 1835 8
## 1836 8
## 1837 8
## 1838 8
## 1839 8
## 1840 8
## 1841 8
## 1842 8
## 1843 8
## 1844 8
## 1845 8
## 1846 8
## 1847 8
## 1848 8
## 1849 8
## 1850 8
## 1851 8
## 1852 8
## 1853 8
## 1854 8
## 1855 8
## 1856 8
## 1857 8
## 1858 8
## 1859 8
## 1860 8
## 1861 8
## 1862 8
## 1863 8
## 1864 8
## 1865 8
## 1866 8
## 1867 8
## 1868 8
## 1869 8
## 1870 8
## 1871 8
## 1872 8
## 1873 8
## 1874 8
## 1875 8
## 1876 8
## 1877 8
## 1878 8
## 1879 8
## 1880 8
## 1881 8
## 1882 8
## 1883 8
## 1884 8
## 1885 8
## 1886 8
## 1887 8
## 1888 8
## 1889 8
## 1890 8
## 1891 8
## 1892 8
## 1893 9
## 1894 9
## 1895 9
## 1896 9
## 1897 9
## 1898 9
## 1899 9
## 1900 9
## 1901 9
## 1902 9
## 1903 9
## 1904 9
## 1905 9
## 1906 9
## 1907 9
## 1908 9
## 1909 9
## 1910 9
## 1911 9
## 1912 9
## 1913 9
## 1914 9
## 1915 9
## 1916 9
## 1917 9
## 1918 9
## 1919 9
## 1920 9
## 1921 9
## 1922 9
## 1923 9
## 1924 9
## 1925 9
## 1926 9
## 1927 9
## 1928 9
## 1929 9
## 1930 9
## 1931 9
## 1932 9
## 1933 9
## 1934 9
## 1935 9
## 1936 9
## 1937 9
## 1938 9
## 1939 9
## 1940 9
## 1941 9
## 1942 9
## 1943 9
## 1944 9
## 1945 9
## 1946 9
## 1947 9
## 1948 9
## 1949 9
## 1950 9
## 1951 9
## 1952 9
## 1953 9
## 1954 9
## 1955 9
## 1956 9
## 1957 9
## 1958 9
## 1959 9
## 1960 9
## 1961 9
## 1962 9
## 1963 9
## 1964 9
## 1965 9
## 1966 9
## 1967 9
## 1968 9
## 1969 9
## 1970 9
## 1971 9
## 1972 9
## 1973 9
## 1974 9
## 1975 9
## 1976 9
## 1977 9
## 1978 9
## 1979 9
## 1980 9
## 1981 9
## 1982 9
## 1983 9
## 1984 9
## 1985 9
## 1986 9
## 1987 9
## 1988 9
## 1989 9
## 1990 9
## 1991 9
## 1992 9
## 1993 9
## 1994 9
## 1995 9
## 1996 9
## 1997 9
## 1998 9
## 1999 9
## 2000 9
## 2001 9
## 2002 9
## 2003 9
## 2004 9
## 2005 9
## 2006 9
## 2007 9
## 2008 9
## 2009 9
## 2010 9
## 2011 9
## 2012 10
## 2013 10
## 2014 10
## 2015 10
## 2016 10
## 2017 10
## 2018 10
## 2019 10
## 2020 10
## 2021 10
## 2022 10
## 2023 10
## 2024 10
## 2025 10
## 2026 10
## 2027 10
## 2028 10
## 2029 10
## 2030 10
## 2031 10
## 2032 10
## 2033 10
## 2034 10
## 2035 10
## 2036 10
## 2037 10
## 2038 10
## 2039 10
## 2040 10
## 2041 10
## 2042 10
## 2043 10
## 2044 10
## 2045 10
## 2046 10
## 2047 10
## 2048 10
## 2049 10
## 2050 10
## 2051 10
## 2052 10
## 2053 10
## 2054 10
## 2055 10
## 2056 10
## 2057 10
## 2058 10
## 2059 10
## 2060 10
## 2061 10
## 2062 10
## 2063 10
## 2064 10
## 2065 <NA>
## 2066 <NA>
## 2067 <NA>
## 2068 <NA>
## 2069 <NA>
## 2070 <NA>
## 2071 <NA>
## 2072 <NA>
## 2073 <NA>
## 2074 <NA>
## 2075 <NA>
## 2076 <NA>
## 2077 <NA>
## 2078 <NA>
## 2079 <NA>
## 2080 <NA>
## 2081 <NA>
## 2082 <NA>
## 2083 <NA>
## 2084 <NA>
## 2085 <NA>
## 2086 <NA>
## 2087 <NA>
## 2088 <NA>
## 2089 <NA>
## 2090 <NA>
## 2091 <NA>
## 2092 <NA>
## 2093 <NA>
## 2094 <NA>
## 2095 <NA>
## 2096 <NA>
## 2097 <NA>
## 2098 <NA>
## 2099 <NA>
## 2100 <NA>
## 2101 <NA>
## 2102 <NA>
## 2103 <NA>
## 2104 <NA>
## 2105 <NA>
## 2106 <NA>
## 2107 <NA>
## 2108 <NA>
## 2109 <NA>
## 2110 <NA>
## 2111 <NA>
## 2112 <NA>
## 2113 <NA>
## 2114 <NA>
## 2115 <NA>
## 2116 <NA>
## 2117 <NA>
## 2118 <NA>
## 2119 <NA>
## 2120 <NA>
## 2121 <NA>
## 2122 <NA>
## 2123 <NA>
## 2124 <NA>
## 2125 <NA>
## 2126 <NA>
## 2127 <NA>
## 2128 <NA>
## 2129 <NA>
## 2130 <NA>
## 2131 <NA>
## 2132 <NA>
## 2133 <NA>
## 2134 <NA>
## 2135 <NA>
## 2136 <NA>
## 2137 <NA>
## 2138 <NA>
## 2139 <NA>
## 2140 <NA>
## 2141 <NA>
## 2142 <NA>
## 2143 <NA>
## 2144 <NA>
## 2145 <NA>
## 2146 <NA>
## 2147 <NA>
## 2148 <NA>
## 2149 <NA>
## 2150 <NA>
## 2151 <NA>
## 2152 <NA>
## 2153 <NA>
## 2154 <NA>
## 2155 <NA>
## 2156 <NA>
## 2157 <NA>
## 2158 <NA>
## 2159 <NA>
## 2160 <NA>
## 2161 <NA>
## 2162 <NA>
## 2163 <NA>
## 2164 <NA>
## 2165 <NA>
## 2166 <NA>
## 2167 <NA>
## 2168 <NA>
## 2169 <NA>
## 2170 <NA>
## 2171 <NA>
## 2172 <NA>
## 2173 <NA>
## 2174 <NA>
## 2175 <NA>
## 2176 <NA>
## 2177 <NA>
## 2178 <NA>
## 2179 <NA>
## 2180 <NA>
## 2181 <NA>
## 2182 <NA>
## 2183 <NA>
## 2184 <NA>
## 2185 <NA>
## 2186 <NA>
## 2187 <NA>
## 2188 <NA>
## 2189 <NA>
## 2190 <NA>
## 2191 <NA>
## 2192 <NA>
## 2193 <NA>
## 2194 <NA>
## 2195 <NA>
## 2196 <NA>
## 2197 <NA>
## 2198 <NA>
## 2199 <NA>
## 2200 <NA>
## 2201 <NA>
str(fd)
## 'data.frame': 2201 obs. of 8 variables:
## $ CRS_DEP_TIME : Factor w/ 59 levels "600","630","640",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ CARRIER : Factor w/ 8 levels "CO","DH","DL",..: 4 4 4 4 4 4 4 4 4 4 ...
## $ DEST : Factor w/ 3 levels "EWR","JFK","LGA": 2 2 2 2 2 2 2 2 2 2 ...
## $ ORIGIN : Factor w/ 3 levels "BWI","DCA","IAD": 2 2 2 2 2 2 2 2 2 2 ...
## $ Weather : Factor w/ 2 levels "0","1": 1 1 1 1 1 1 1 1 1 1 ...
## $ DAY_WEEK : Factor w/ 7 levels "1","2","3","4",..: 4 5 6 7 1 2 3 4 5 6 ...
## $ Flight.Status: Factor w/ 2 levels "0","1": 1 1 1 1 1 1 1 1 1 2 ...
## $ bin_fd : Factor w/ 10 levels "1","2","3","4",..: 1 1 1 1 1 1 1 1 1 1 ...
library(arules)
apriori(trans1,parameter = list(sup=0.1,conf=0.8,target="rules"))->fd_rules
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.8 0.1 1 none FALSE TRUE 5 0.1 1
## maxlen target ext
## 10 rules FALSE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 220
##
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[94 item(s), 2201 transaction(s)] done [0.00s].
## sorting and recoding items ... [23 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 5 done [0.00s].
## writing ... [160 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
fd_rules
## set of 160 rules
summary(fd_rules)
## set of 160 rules
##
## rule length distribution (lhs + rhs):sizes
## 1 2 3 4 5
## 2 40 68 39 11
##
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 1.000 2.000 3.000 3.106 4.000 5.000
##
## summary of quality measures:
## support confidence lift
## Min. :0.1018 Min. :0.8055 Min. :0.9389
## 1st Qu.:0.1449 1st Qu.:0.9134 1st Qu.:1.0148
## Median :0.1677 Median :0.9872 Median :1.0527
## Mean :0.2104 Mean :0.9524 Mean :1.3054
## 3rd Qu.:0.1840 3rd Qu.:1.0000 3rd Qu.:1.6066
## Max. :0.9855 Max. :1.0000 Max. :3.3098
##
## mining info:
## data ntransactions support confidence
## trans1 2201 0.1 0.8
inspect(fd_rules)
## lhs rhs support confidence lift
## [1] {} => {Flight.Status=0} 0.8055429 0.8055429 1.0000000
## [2] {} => {Weather=0} 0.9854612 0.9854612 1.0000000
## [3] {bin_fd=4} => {Weather=0} 0.1044980 0.9745763 0.9889545
## [4] {bin_fd=7} => {Weather=0} 0.1076783 0.9834025 0.9979110
## [5] {DAY_WEEK=6} => {Flight.Status=0} 0.1026806 0.9040000 1.1222245
## [6] {DAY_WEEK=6} => {Weather=0} 0.1135847 1.0000000 1.0147533
## [7] {DAY_WEEK=7} => {Weather=0} 0.1140391 0.9920949 1.0067316
## [8] {CARRIER=MQ} => {ORIGIN=DCA} 0.1340300 1.0000000 1.6065693
## [9] {CARRIER=MQ} => {Weather=0} 0.1294866 0.9661017 0.9803549
## [10] {DAY_WEEK=2} => {Weather=0} 0.1326670 0.9511401 0.9651726
## [11] {DAY_WEEK=1} => {Weather=0} 0.1335756 0.9545455 0.9686282
## [12] {DAY_WEEK=3} => {Flight.Status=0} 0.1194911 0.8218750 1.0202746
## [13] {DAY_WEEK=3} => {Weather=0} 0.1453885 1.0000000 1.0147533
## [14] {DAY_WEEK=4} => {Flight.Status=0} 0.1431168 0.8467742 1.0511844
## [15] {DAY_WEEK=4} => {Weather=0} 0.1690141 1.0000000 1.0147533
## [16] {DEST=JFK} => {Weather=0} 0.1717401 0.9792746 0.9937222
## [17] {CARRIER=DL} => {DEST=LGA} 0.1621990 0.9201031 1.7609973
## [18] {CARRIER=DL} => {ORIGIN=DCA} 0.1762835 1.0000000 1.6065693
## [19] {CARRIER=DL} => {Flight.Status=0} 0.1549296 0.8788660 1.0910231
## [20] {CARRIER=DL} => {Weather=0} 0.1749205 0.9922680 1.0069073
## [21] {DAY_WEEK=5} => {Flight.Status=0} 0.1435711 0.8081841 1.0032788
## [22] {DAY_WEEK=5} => {Weather=0} 0.1771922 0.9974425 1.0121581
## [23] {CARRIER=US} => {DEST=LGA} 0.1835529 1.0000000 1.9139130
## [24] {CARRIER=US} => {ORIGIN=DCA} 0.1835529 1.0000000 1.6065693
## [25] {CARRIER=US} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [26] {CARRIER=US} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [27] {CARRIER=RU} => {DEST=EWR} 0.1853703 1.0000000 3.3097744
## [28] {CARRIER=RU} => {Weather=0} 0.1840073 0.9926471 1.0072919
## [29] {Flight.Status=1} => {Weather=0} 0.1799182 0.9252336 0.9388839
## [30] {CARRIER=DH} => {ORIGIN=IAD} 0.2380736 0.9509982 3.0512347
## [31] {CARRIER=DH} => {Weather=0} 0.2453430 0.9800363 0.9944951
## [32] {DEST=EWR} => {Weather=0} 0.2985007 0.9879699 1.0025458
## [33] {ORIGIN=IAD} => {Weather=0} 0.3053158 0.9795918 0.9940441
## [34] {bin_fd=1} => {Flight.Status=0} 0.2753294 0.8669528 1.0762341
## [35] {bin_fd=1} => {Weather=0} 0.3125852 0.9842632 0.9987844
## [36] {DEST=LGA} => {ORIGIN=DCA} 0.4384371 0.8391304 1.3481212
## [37] {DEST=LGA} => {Flight.Status=0} 0.4393458 0.8408696 1.0438544
## [38] {DEST=LGA} => {Weather=0} 0.5152204 0.9860870 1.0006350
## [39] {ORIGIN=DCA} => {Flight.Status=0} 0.5220354 0.8386861 1.0411439
## [40] {ORIGIN=DCA} => {Weather=0} 0.6147206 0.9875912 1.0021615
## [41] {Flight.Status=0} => {Weather=0} 0.8055429 1.0000000 1.0147533
## [42] {Weather=0} => {Flight.Status=0} 0.8055429 0.8174274 1.0147533
## [43] {DAY_WEEK=6,
## Flight.Status=0} => {Weather=0} 0.1026806 1.0000000 1.0147533
## [44] {Weather=0,
## DAY_WEEK=6} => {Flight.Status=0} 0.1026806 0.9040000 1.1222245
## [45] {CARRIER=MQ,
## ORIGIN=DCA} => {Weather=0} 0.1294866 0.9661017 0.9803549
## [46] {CARRIER=MQ,
## Weather=0} => {ORIGIN=DCA} 0.1294866 1.0000000 1.6065693
## [47] {DAY_WEEK=2,
## Flight.Status=0} => {Weather=0} 0.1108587 1.0000000 1.0147533
## [48] {Weather=0,
## DAY_WEEK=2} => {Flight.Status=0} 0.1108587 0.8356164 1.0373332
## [49] {DAY_WEEK=1,
## Flight.Status=0} => {Weather=0} 0.1017719 1.0000000 1.0147533
## [50] {DAY_WEEK=3,
## Flight.Status=0} => {Weather=0} 0.1194911 1.0000000 1.0147533
## [51] {Weather=0,
## DAY_WEEK=3} => {Flight.Status=0} 0.1194911 0.8218750 1.0202746
## [52] {ORIGIN=DCA,
## DAY_WEEK=4} => {Weather=0} 0.1076783 1.0000000 1.0147533
## [53] {DAY_WEEK=4,
## Flight.Status=0} => {Weather=0} 0.1431168 1.0000000 1.0147533
## [54] {Weather=0,
## DAY_WEEK=4} => {Flight.Status=0} 0.1431168 0.8467742 1.0511844
## [55] {CARRIER=DH,
## DEST=JFK} => {Weather=0} 0.1044980 0.9829060 0.9974071
## [56] {DEST=JFK,
## Flight.Status=0} => {Weather=0} 0.1372104 1.0000000 1.0147533
## [57] {CARRIER=DL,
## DEST=LGA} => {ORIGIN=DCA} 0.1621990 1.0000000 1.6065693
## [58] {CARRIER=DL,
## ORIGIN=DCA} => {DEST=LGA} 0.1621990 0.9201031 1.7609973
## [59] {CARRIER=DL,
## DEST=LGA} => {Flight.Status=0} 0.1476602 0.9103641 1.1301249
## [60] {CARRIER=DL,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [61] {CARRIER=DL,
## DEST=LGA} => {Weather=0} 0.1612903 0.9943978 1.0090684
## [62] {CARRIER=DL,
## Weather=0} => {DEST=LGA} 0.1612903 0.9220779 1.7647770
## [63] {CARRIER=DL,
## ORIGIN=DCA} => {Flight.Status=0} 0.1549296 0.8788660 1.0910231
## [64] {CARRIER=DL,
## Flight.Status=0} => {ORIGIN=DCA} 0.1549296 1.0000000 1.6065693
## [65] {CARRIER=DL,
## ORIGIN=DCA} => {Weather=0} 0.1749205 0.9922680 1.0069073
## [66] {CARRIER=DL,
## Weather=0} => {ORIGIN=DCA} 0.1749205 1.0000000 1.6065693
## [67] {CARRIER=DL,
## Flight.Status=0} => {Weather=0} 0.1549296 1.0000000 1.0147533
## [68] {CARRIER=DL,
## Weather=0} => {Flight.Status=0} 0.1549296 0.8857143 1.0995246
## [69] {ORIGIN=DCA,
## DAY_WEEK=5} => {Weather=0} 0.1113130 0.9959350 1.0106283
## [70] {DAY_WEEK=5,
## Flight.Status=0} => {Weather=0} 0.1435711 1.0000000 1.0147533
## [71] {Weather=0,
## DAY_WEEK=5} => {Flight.Status=0} 0.1435711 0.8102564 1.0058513
## [72] {CARRIER=US,
## DEST=LGA} => {ORIGIN=DCA} 0.1835529 1.0000000 1.6065693
## [73] {CARRIER=US,
## ORIGIN=DCA} => {DEST=LGA} 0.1835529 1.0000000 1.9139130
## [74] {CARRIER=US,
## DEST=LGA} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [75] {CARRIER=US,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [76] {CARRIER=US,
## DEST=LGA} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [77] {CARRIER=US,
## Weather=0} => {DEST=LGA} 0.1830986 1.0000000 1.9139130
## [78] {CARRIER=US,
## ORIGIN=DCA} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [79] {CARRIER=US,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [80] {CARRIER=US,
## ORIGIN=DCA} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [81] {CARRIER=US,
## Weather=0} => {ORIGIN=DCA} 0.1830986 1.0000000 1.6065693
## [82] {CARRIER=US,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [83] {CARRIER=US,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [84] {CARRIER=RU,
## Flight.Status=0} => {DEST=EWR} 0.1426624 1.0000000 3.3097744
## [85] {CARRIER=RU,
## DEST=EWR} => {Weather=0} 0.1840073 0.9926471 1.0072919
## [86] {CARRIER=RU,
## Weather=0} => {DEST=EWR} 0.1840073 1.0000000 3.3097744
## [87] {CARRIER=RU,
## Flight.Status=0} => {Weather=0} 0.1426624 1.0000000 1.0147533
## [88] {CARRIER=DH,
## Flight.Status=0} => {ORIGIN=IAD} 0.1781009 0.9468599 3.0379572
## [89] {CARRIER=DH,
## ORIGIN=IAD} => {Weather=0} 0.2330759 0.9790076 0.9934513
## [90] {CARRIER=DH,
## Weather=0} => {ORIGIN=IAD} 0.2330759 0.9500000 3.0480321
## [91] {CARRIER=DH,
## Flight.Status=0} => {Weather=0} 0.1880963 1.0000000 1.0147533
## [92] {DEST=EWR,
## ORIGIN=IAD} => {Weather=0} 0.1317583 0.9863946 1.0009472
## [93] {DEST=EWR,
## ORIGIN=DCA} => {Weather=0} 0.1149478 0.9882812 1.0028617
## [94] {DEST=EWR,
## Flight.Status=0} => {Weather=0} 0.2289868 1.0000000 1.0147533
## [95] {ORIGIN=IAD,
## Flight.Status=0} => {Weather=0} 0.2344389 1.0000000 1.0147533
## [96] {DEST=LGA,
## bin_fd=1} => {ORIGIN=DCA} 0.1617447 0.8279070 1.3300900
## [97] {DEST=LGA,
## bin_fd=1} => {Flight.Status=0} 0.1694684 0.8674419 1.0768412
## [98] {DEST=LGA,
## bin_fd=1} => {Weather=0} 0.1917310 0.9813953 0.9958742
## [99] {ORIGIN=DCA,
## bin_fd=1} => {Flight.Status=0} 0.1858246 0.8930131 1.1085854
## [100] {ORIGIN=DCA,
## bin_fd=1} => {Weather=0} 0.2053612 0.9868996 1.0014596
## [101] {Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.2753294 1.0000000 1.0147533
## [102] {Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.2753294 0.8808140 1.0934413
## [103] {DEST=LGA,
## ORIGIN=DCA} => {Flight.Status=0} 0.3807360 0.8683938 1.0780230
## [104] {DEST=LGA,
## Flight.Status=0} => {ORIGIN=DCA} 0.3807360 0.8665977 1.3922493
## [105] {DEST=LGA,
## ORIGIN=DCA} => {Weather=0} 0.4338937 0.9896373 1.0042378
## [106] {DEST=LGA,
## Weather=0} => {ORIGIN=DCA} 0.4338937 0.8421517 1.3529751
## [107] {DEST=LGA,
## Flight.Status=0} => {Weather=0} 0.4393458 1.0000000 1.0147533
## [108] {DEST=LGA,
## Weather=0} => {Flight.Status=0} 0.4393458 0.8527337 1.0585825
## [109] {ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.5220354 1.0000000 1.0147533
## [110] {ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.5220354 0.8492239 1.0542256
## [111] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA} => {Flight.Status=0} 0.1476602 0.9103641 1.1301249
## [112] {CARRIER=DL,
## DEST=LGA,
## Flight.Status=0} => {ORIGIN=DCA} 0.1476602 1.0000000 1.6065693
## [113] {CARRIER=DL,
## ORIGIN=DCA,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [114] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA} => {Weather=0} 0.1612903 0.9943978 1.0090684
## [115] {CARRIER=DL,
## DEST=LGA,
## Weather=0} => {ORIGIN=DCA} 0.1612903 1.0000000 1.6065693
## [116] {CARRIER=DL,
## ORIGIN=DCA,
## Weather=0} => {DEST=LGA} 0.1612903 0.9220779 1.7647770
## [117] {CARRIER=DL,
## DEST=LGA,
## Flight.Status=0} => {Weather=0} 0.1476602 1.0000000 1.0147533
## [118] {CARRIER=DL,
## DEST=LGA,
## Weather=0} => {Flight.Status=0} 0.1476602 0.9154930 1.1364918
## [119] {CARRIER=DL,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [120] {CARRIER=DL,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1549296 1.0000000 1.0147533
## [121] {CARRIER=DL,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1549296 0.8857143 1.0995246
## [122] {CARRIER=DL,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1549296 1.0000000 1.6065693
## [123] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [124] {CARRIER=US,
## DEST=LGA,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [125] {CARRIER=US,
## ORIGIN=DCA,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [126] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [127] {CARRIER=US,
## DEST=LGA,
## Weather=0} => {ORIGIN=DCA} 0.1830986 1.0000000 1.6065693
## [128] {CARRIER=US,
## ORIGIN=DCA,
## Weather=0} => {DEST=LGA} 0.1830986 1.0000000 1.9139130
## [129] {CARRIER=US,
## DEST=LGA,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [130] {CARRIER=US,
## DEST=LGA,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [131] {CARRIER=US,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [132] {CARRIER=US,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [133] {CARRIER=US,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [134] {CARRIER=US,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [135] {CARRIER=RU,
## DEST=EWR,
## Flight.Status=0} => {Weather=0} 0.1426624 1.0000000 1.0147533
## [136] {CARRIER=RU,
## Weather=0,
## Flight.Status=0} => {DEST=EWR} 0.1426624 1.0000000 3.3097744
## [137] {CARRIER=DH,
## ORIGIN=IAD,
## Flight.Status=0} => {Weather=0} 0.1781009 1.0000000 1.0147533
## [138] {CARRIER=DH,
## Weather=0,
## Flight.Status=0} => {ORIGIN=IAD} 0.1781009 0.9468599 3.0379572
## [139] {DEST=LGA,
## ORIGIN=DCA,
## bin_fd=1} => {Flight.Status=0} 0.1431168 0.8848315 1.0984287
## [140] {DEST=LGA,
## Flight.Status=0,
## bin_fd=1} => {ORIGIN=DCA} 0.1431168 0.8445040 1.3567543
## [141] {DEST=LGA,
## ORIGIN=DCA,
## bin_fd=1} => {Weather=0} 0.1594730 0.9859551 1.0005012
## [142] {DEST=LGA,
## Weather=0,
## bin_fd=1} => {ORIGIN=DCA} 0.1594730 0.8317536 1.3362698
## [143] {DEST=LGA,
## Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.1694684 1.0000000 1.0147533
## [144] {DEST=LGA,
## Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.1694684 0.8838863 1.0972553
## [145] {ORIGIN=DCA,
## Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.1858246 1.0000000 1.0147533
## [146] {ORIGIN=DCA,
## Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.1858246 0.9048673 1.1233011
## [147] {DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.3807360 1.0000000 1.0147533
## [148] {DEST=LGA,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.3807360 0.8774869 1.0893112
## [149] {DEST=LGA,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.3807360 0.8665977 1.3922493
## [150] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1476602 1.0000000 1.0147533
## [151] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1476602 0.9154930 1.1364918
## [152] {CARRIER=DL,
## DEST=LGA,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1476602 1.0000000 1.6065693
## [153] {CARRIER=DL,
## ORIGIN=DCA,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [154] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [155] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [156] {CARRIER=US,
## DEST=LGA,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [157] {CARRIER=US,
## ORIGIN=DCA,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [158] {DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.1431168 1.0000000 1.0147533
## [159] {DEST=LGA,
## ORIGIN=DCA,
## Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.1431168 0.8974359 1.1140758
## [160] {DEST=LGA,
## Weather=0,
## Flight.Status=0,
## bin_fd=1} => {ORIGIN=DCA} 0.1431168 0.8445040 1.3567543
6.a)
library(arulesViz)
plot(fd_rules)
7. Filter the rules with specific LHS and RHS conditions E.g.; Filter the rules with Flighstatus=0
as(subset(fd_rules,subset=rhs %in% "Flight.Status=0"),"data.frame")->fd.fliter
fd.fliter
## rules
## 1 {} => {Flight.Status=0}
## 5 {DAY_WEEK=6} => {Flight.Status=0}
## 12 {DAY_WEEK=3} => {Flight.Status=0}
## 14 {DAY_WEEK=4} => {Flight.Status=0}
## 19 {CARRIER=DL} => {Flight.Status=0}
## 21 {DAY_WEEK=5} => {Flight.Status=0}
## 25 {CARRIER=US} => {Flight.Status=0}
## 34 {bin_fd=1} => {Flight.Status=0}
## 37 {DEST=LGA} => {Flight.Status=0}
## 39 {ORIGIN=DCA} => {Flight.Status=0}
## 42 {Weather=0} => {Flight.Status=0}
## 44 {Weather=0,DAY_WEEK=6} => {Flight.Status=0}
## 48 {Weather=0,DAY_WEEK=2} => {Flight.Status=0}
## 51 {Weather=0,DAY_WEEK=3} => {Flight.Status=0}
## 54 {Weather=0,DAY_WEEK=4} => {Flight.Status=0}
## 59 {CARRIER=DL,DEST=LGA} => {Flight.Status=0}
## 63 {CARRIER=DL,ORIGIN=DCA} => {Flight.Status=0}
## 68 {CARRIER=DL,Weather=0} => {Flight.Status=0}
## 71 {Weather=0,DAY_WEEK=5} => {Flight.Status=0}
## 74 {CARRIER=US,DEST=LGA} => {Flight.Status=0}
## 78 {CARRIER=US,ORIGIN=DCA} => {Flight.Status=0}
## 83 {CARRIER=US,Weather=0} => {Flight.Status=0}
## 97 {DEST=LGA,bin_fd=1} => {Flight.Status=0}
## 99 {ORIGIN=DCA,bin_fd=1} => {Flight.Status=0}
## 102 {Weather=0,bin_fd=1} => {Flight.Status=0}
## 103 {DEST=LGA,ORIGIN=DCA} => {Flight.Status=0}
## 108 {DEST=LGA,Weather=0} => {Flight.Status=0}
## 110 {ORIGIN=DCA,Weather=0} => {Flight.Status=0}
## 111 {CARRIER=DL,DEST=LGA,ORIGIN=DCA} => {Flight.Status=0}
## 118 {CARRIER=DL,DEST=LGA,Weather=0} => {Flight.Status=0}
## 121 {CARRIER=DL,ORIGIN=DCA,Weather=0} => {Flight.Status=0}
## 123 {CARRIER=US,DEST=LGA,ORIGIN=DCA} => {Flight.Status=0}
## 130 {CARRIER=US,DEST=LGA,Weather=0} => {Flight.Status=0}
## 133 {CARRIER=US,ORIGIN=DCA,Weather=0} => {Flight.Status=0}
## 139 {DEST=LGA,ORIGIN=DCA,bin_fd=1} => {Flight.Status=0}
## 144 {DEST=LGA,Weather=0,bin_fd=1} => {Flight.Status=0}
## 146 {ORIGIN=DCA,Weather=0,bin_fd=1} => {Flight.Status=0}
## 148 {DEST=LGA,ORIGIN=DCA,Weather=0} => {Flight.Status=0}
## 151 {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} => {Flight.Status=0}
## 155 {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} => {Flight.Status=0}
## 159 {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} => {Flight.Status=0}
## support confidence lift
## 1 0.8055429 0.8055429 1.000000
## 5 0.1026806 0.9040000 1.122224
## 12 0.1194911 0.8218750 1.020275
## 14 0.1431168 0.8467742 1.051184
## 19 0.1549296 0.8788660 1.091023
## 21 0.1435711 0.8081841 1.003279
## 25 0.1676511 0.9133663 1.133852
## 34 0.2753294 0.8669528 1.076234
## 37 0.4393458 0.8408696 1.043854
## 39 0.5220354 0.8386861 1.041144
## 42 0.8055429 0.8174274 1.014753
## 44 0.1026806 0.9040000 1.122224
## 48 0.1108587 0.8356164 1.037333
## 51 0.1194911 0.8218750 1.020275
## 54 0.1431168 0.8467742 1.051184
## 59 0.1476602 0.9103641 1.130125
## 63 0.1549296 0.8788660 1.091023
## 68 0.1549296 0.8857143 1.099525
## 71 0.1435711 0.8102564 1.005851
## 74 0.1676511 0.9133663 1.133852
## 78 0.1676511 0.9133663 1.133852
## 83 0.1676511 0.9156328 1.136665
## 97 0.1694684 0.8674419 1.076841
## 99 0.1858246 0.8930131 1.108585
## 102 0.2753294 0.8808140 1.093441
## 103 0.3807360 0.8683938 1.078023
## 108 0.4393458 0.8527337 1.058583
## 110 0.5220354 0.8492239 1.054226
## 111 0.1476602 0.9103641 1.130125
## 118 0.1476602 0.9154930 1.136492
## 121 0.1549296 0.8857143 1.099525
## 123 0.1676511 0.9133663 1.133852
## 130 0.1676511 0.9156328 1.136665
## 133 0.1676511 0.9156328 1.136665
## 139 0.1431168 0.8848315 1.098429
## 144 0.1694684 0.8838863 1.097255
## 146 0.1858246 0.9048673 1.123301
## 148 0.3807360 0.8774869 1.089311
## 151 0.1476602 0.9154930 1.136492
## 155 0.1676511 0.9156328 1.136665
## 159 0.1431168 0.8974359 1.114076
as(subset(fd_rules,subset=lhs %in% "Flight.Status=0"),"data.frame")->fd.fliterlhs
fd.fliterlhs
## rules
## 41 {Flight.Status=0} => {Weather=0}
## 43 {DAY_WEEK=6,Flight.Status=0} => {Weather=0}
## 47 {DAY_WEEK=2,Flight.Status=0} => {Weather=0}
## 49 {DAY_WEEK=1,Flight.Status=0} => {Weather=0}
## 50 {DAY_WEEK=3,Flight.Status=0} => {Weather=0}
## 53 {DAY_WEEK=4,Flight.Status=0} => {Weather=0}
## 56 {DEST=JFK,Flight.Status=0} => {Weather=0}
## 60 {CARRIER=DL,Flight.Status=0} => {DEST=LGA}
## 64 {CARRIER=DL,Flight.Status=0} => {ORIGIN=DCA}
## 67 {CARRIER=DL,Flight.Status=0} => {Weather=0}
## 70 {DAY_WEEK=5,Flight.Status=0} => {Weather=0}
## 75 {CARRIER=US,Flight.Status=0} => {DEST=LGA}
## 79 {CARRIER=US,Flight.Status=0} => {ORIGIN=DCA}
## 82 {CARRIER=US,Flight.Status=0} => {Weather=0}
## 84 {CARRIER=RU,Flight.Status=0} => {DEST=EWR}
## 87 {CARRIER=RU,Flight.Status=0} => {Weather=0}
## 88 {CARRIER=DH,Flight.Status=0} => {ORIGIN=IAD}
## 91 {CARRIER=DH,Flight.Status=0} => {Weather=0}
## 94 {DEST=EWR,Flight.Status=0} => {Weather=0}
## 95 {ORIGIN=IAD,Flight.Status=0} => {Weather=0}
## 101 {Flight.Status=0,bin_fd=1} => {Weather=0}
## 104 {DEST=LGA,Flight.Status=0} => {ORIGIN=DCA}
## 107 {DEST=LGA,Flight.Status=0} => {Weather=0}
## 109 {ORIGIN=DCA,Flight.Status=0} => {Weather=0}
## 112 {CARRIER=DL,DEST=LGA,Flight.Status=0} => {ORIGIN=DCA}
## 113 {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} => {DEST=LGA}
## 117 {CARRIER=DL,DEST=LGA,Flight.Status=0} => {Weather=0}
## 119 {CARRIER=DL,Weather=0,Flight.Status=0} => {DEST=LGA}
## 120 {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} => {Weather=0}
## 122 {CARRIER=DL,Weather=0,Flight.Status=0} => {ORIGIN=DCA}
## 124 {CARRIER=US,DEST=LGA,Flight.Status=0} => {ORIGIN=DCA}
## 125 {CARRIER=US,ORIGIN=DCA,Flight.Status=0} => {DEST=LGA}
## 129 {CARRIER=US,DEST=LGA,Flight.Status=0} => {Weather=0}
## 131 {CARRIER=US,Weather=0,Flight.Status=0} => {DEST=LGA}
## 132 {CARRIER=US,ORIGIN=DCA,Flight.Status=0} => {Weather=0}
## 134 {CARRIER=US,Weather=0,Flight.Status=0} => {ORIGIN=DCA}
## 135 {CARRIER=RU,DEST=EWR,Flight.Status=0} => {Weather=0}
## 136 {CARRIER=RU,Weather=0,Flight.Status=0} => {DEST=EWR}
## 137 {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} => {Weather=0}
## 138 {CARRIER=DH,Weather=0,Flight.Status=0} => {ORIGIN=IAD}
## 140 {DEST=LGA,Flight.Status=0,bin_fd=1} => {ORIGIN=DCA}
## 143 {DEST=LGA,Flight.Status=0,bin_fd=1} => {Weather=0}
## 145 {ORIGIN=DCA,Flight.Status=0,bin_fd=1} => {Weather=0}
## 147 {DEST=LGA,ORIGIN=DCA,Flight.Status=0} => {Weather=0}
## 149 {DEST=LGA,Weather=0,Flight.Status=0} => {ORIGIN=DCA}
## 150 {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} => {Weather=0}
## 152 {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} => {ORIGIN=DCA}
## 153 {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} => {DEST=LGA}
## 154 {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} => {Weather=0}
## 156 {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} => {ORIGIN=DCA}
## 157 {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} => {DEST=LGA}
## 158 {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} => {Weather=0}
## 160 {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} => {ORIGIN=DCA}
## support confidence lift
## 41 0.8055429 1.0000000 1.014753
## 43 0.1026806 1.0000000 1.014753
## 47 0.1108587 1.0000000 1.014753
## 49 0.1017719 1.0000000 1.014753
## 50 0.1194911 1.0000000 1.014753
## 53 0.1431168 1.0000000 1.014753
## 56 0.1372104 1.0000000 1.014753
## 60 0.1476602 0.9530792 1.824111
## 64 0.1549296 1.0000000 1.606569
## 67 0.1549296 1.0000000 1.014753
## 70 0.1435711 1.0000000 1.014753
## 75 0.1676511 1.0000000 1.913913
## 79 0.1676511 1.0000000 1.606569
## 82 0.1676511 1.0000000 1.014753
## 84 0.1426624 1.0000000 3.309774
## 87 0.1426624 1.0000000 1.014753
## 88 0.1781009 0.9468599 3.037957
## 91 0.1880963 1.0000000 1.014753
## 94 0.2289868 1.0000000 1.014753
## 95 0.2344389 1.0000000 1.014753
## 101 0.2753294 1.0000000 1.014753
## 104 0.3807360 0.8665977 1.392249
## 107 0.4393458 1.0000000 1.014753
## 109 0.5220354 1.0000000 1.014753
## 112 0.1476602 1.0000000 1.606569
## 113 0.1476602 0.9530792 1.824111
## 117 0.1476602 1.0000000 1.014753
## 119 0.1476602 0.9530792 1.824111
## 120 0.1549296 1.0000000 1.014753
## 122 0.1549296 1.0000000 1.606569
## 124 0.1676511 1.0000000 1.606569
## 125 0.1676511 1.0000000 1.913913
## 129 0.1676511 1.0000000 1.014753
## 131 0.1676511 1.0000000 1.913913
## 132 0.1676511 1.0000000 1.014753
## 134 0.1676511 1.0000000 1.606569
## 135 0.1426624 1.0000000 1.014753
## 136 0.1426624 1.0000000 3.309774
## 137 0.1781009 1.0000000 1.014753
## 138 0.1781009 0.9468599 3.037957
## 140 0.1431168 0.8445040 1.356754
## 143 0.1694684 1.0000000 1.014753
## 145 0.1858246 1.0000000 1.014753
## 147 0.3807360 1.0000000 1.014753
## 149 0.3807360 0.8665977 1.392249
## 150 0.1476602 1.0000000 1.014753
## 152 0.1476602 1.0000000 1.606569
## 153 0.1476602 0.9530792 1.824111
## 154 0.1676511 1.0000000 1.014753
## 156 0.1676511 1.0000000 1.606569
## 157 0.1676511 1.0000000 1.913913
## 158 0.1431168 1.0000000 1.014753
## 160 0.1431168 0.8445040 1.356754
7.a) sort by lift
rules.sorted <- sort(fd_rules, by="lift")
inspect(rules.sorted)
## lhs rhs support confidence lift
## [1] {CARRIER=RU} => {DEST=EWR} 0.1853703 1.0000000 3.3097744
## [2] {CARRIER=RU,
## Flight.Status=0} => {DEST=EWR} 0.1426624 1.0000000 3.3097744
## [3] {CARRIER=RU,
## Weather=0} => {DEST=EWR} 0.1840073 1.0000000 3.3097744
## [4] {CARRIER=RU,
## Weather=0,
## Flight.Status=0} => {DEST=EWR} 0.1426624 1.0000000 3.3097744
## [5] {CARRIER=DH} => {ORIGIN=IAD} 0.2380736 0.9509982 3.0512347
## [6] {CARRIER=DH,
## Weather=0} => {ORIGIN=IAD} 0.2330759 0.9500000 3.0480321
## [7] {CARRIER=DH,
## Flight.Status=0} => {ORIGIN=IAD} 0.1781009 0.9468599 3.0379572
## [8] {CARRIER=DH,
## Weather=0,
## Flight.Status=0} => {ORIGIN=IAD} 0.1781009 0.9468599 3.0379572
## [9] {CARRIER=US} => {DEST=LGA} 0.1835529 1.0000000 1.9139130
## [10] {CARRIER=US,
## ORIGIN=DCA} => {DEST=LGA} 0.1835529 1.0000000 1.9139130
## [11] {CARRIER=US,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [12] {CARRIER=US,
## Weather=0} => {DEST=LGA} 0.1830986 1.0000000 1.9139130
## [13] {CARRIER=US,
## ORIGIN=DCA,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [14] {CARRIER=US,
## ORIGIN=DCA,
## Weather=0} => {DEST=LGA} 0.1830986 1.0000000 1.9139130
## [15] {CARRIER=US,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [16] {CARRIER=US,
## ORIGIN=DCA,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1676511 1.0000000 1.9139130
## [17] {CARRIER=DL,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [18] {CARRIER=DL,
## ORIGIN=DCA,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [19] {CARRIER=DL,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [20] {CARRIER=DL,
## ORIGIN=DCA,
## Weather=0,
## Flight.Status=0} => {DEST=LGA} 0.1476602 0.9530792 1.8241107
## [21] {CARRIER=DL,
## Weather=0} => {DEST=LGA} 0.1612903 0.9220779 1.7647770
## [22] {CARRIER=DL,
## ORIGIN=DCA,
## Weather=0} => {DEST=LGA} 0.1612903 0.9220779 1.7647770
## [23] {CARRIER=DL} => {DEST=LGA} 0.1621990 0.9201031 1.7609973
## [24] {CARRIER=DL,
## ORIGIN=DCA} => {DEST=LGA} 0.1621990 0.9201031 1.7609973
## [25] {CARRIER=MQ} => {ORIGIN=DCA} 0.1340300 1.0000000 1.6065693
## [26] {CARRIER=DL} => {ORIGIN=DCA} 0.1762835 1.0000000 1.6065693
## [27] {CARRIER=US} => {ORIGIN=DCA} 0.1835529 1.0000000 1.6065693
## [28] {CARRIER=MQ,
## Weather=0} => {ORIGIN=DCA} 0.1294866 1.0000000 1.6065693
## [29] {CARRIER=DL,
## DEST=LGA} => {ORIGIN=DCA} 0.1621990 1.0000000 1.6065693
## [30] {CARRIER=DL,
## Flight.Status=0} => {ORIGIN=DCA} 0.1549296 1.0000000 1.6065693
## [31] {CARRIER=DL,
## Weather=0} => {ORIGIN=DCA} 0.1749205 1.0000000 1.6065693
## [32] {CARRIER=US,
## DEST=LGA} => {ORIGIN=DCA} 0.1835529 1.0000000 1.6065693
## [33] {CARRIER=US,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [34] {CARRIER=US,
## Weather=0} => {ORIGIN=DCA} 0.1830986 1.0000000 1.6065693
## [35] {CARRIER=DL,
## DEST=LGA,
## Flight.Status=0} => {ORIGIN=DCA} 0.1476602 1.0000000 1.6065693
## [36] {CARRIER=DL,
## DEST=LGA,
## Weather=0} => {ORIGIN=DCA} 0.1612903 1.0000000 1.6065693
## [37] {CARRIER=DL,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1549296 1.0000000 1.6065693
## [38] {CARRIER=US,
## DEST=LGA,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [39] {CARRIER=US,
## DEST=LGA,
## Weather=0} => {ORIGIN=DCA} 0.1830986 1.0000000 1.6065693
## [40] {CARRIER=US,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [41] {CARRIER=DL,
## DEST=LGA,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1476602 1.0000000 1.6065693
## [42] {CARRIER=US,
## DEST=LGA,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.1676511 1.0000000 1.6065693
## [43] {DEST=LGA,
## Flight.Status=0} => {ORIGIN=DCA} 0.3807360 0.8665977 1.3922493
## [44] {DEST=LGA,
## Weather=0,
## Flight.Status=0} => {ORIGIN=DCA} 0.3807360 0.8665977 1.3922493
## [45] {DEST=LGA,
## Flight.Status=0,
## bin_fd=1} => {ORIGIN=DCA} 0.1431168 0.8445040 1.3567543
## [46] {DEST=LGA,
## Weather=0,
## Flight.Status=0,
## bin_fd=1} => {ORIGIN=DCA} 0.1431168 0.8445040 1.3567543
## [47] {DEST=LGA,
## Weather=0} => {ORIGIN=DCA} 0.4338937 0.8421517 1.3529751
## [48] {DEST=LGA} => {ORIGIN=DCA} 0.4384371 0.8391304 1.3481212
## [49] {DEST=LGA,
## Weather=0,
## bin_fd=1} => {ORIGIN=DCA} 0.1594730 0.8317536 1.3362698
## [50] {DEST=LGA,
## bin_fd=1} => {ORIGIN=DCA} 0.1617447 0.8279070 1.3300900
## [51] {CARRIER=US,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [52] {CARRIER=US,
## DEST=LGA,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [53] {CARRIER=US,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [54] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1676511 0.9156328 1.1366654
## [55] {CARRIER=DL,
## DEST=LGA,
## Weather=0} => {Flight.Status=0} 0.1476602 0.9154930 1.1364918
## [56] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1476602 0.9154930 1.1364918
## [57] {CARRIER=US} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [58] {CARRIER=US,
## DEST=LGA} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [59] {CARRIER=US,
## ORIGIN=DCA} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [60] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA} => {Flight.Status=0} 0.1676511 0.9133663 1.1338518
## [61] {CARRIER=DL,
## DEST=LGA} => {Flight.Status=0} 0.1476602 0.9103641 1.1301249
## [62] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA} => {Flight.Status=0} 0.1476602 0.9103641 1.1301249
## [63] {ORIGIN=DCA,
## Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.1858246 0.9048673 1.1233011
## [64] {DAY_WEEK=6} => {Flight.Status=0} 0.1026806 0.9040000 1.1222245
## [65] {Weather=0,
## DAY_WEEK=6} => {Flight.Status=0} 0.1026806 0.9040000 1.1222245
## [66] {DEST=LGA,
## ORIGIN=DCA,
## Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.1431168 0.8974359 1.1140758
## [67] {ORIGIN=DCA,
## bin_fd=1} => {Flight.Status=0} 0.1858246 0.8930131 1.1085854
## [68] {CARRIER=DL,
## Weather=0} => {Flight.Status=0} 0.1549296 0.8857143 1.0995246
## [69] {CARRIER=DL,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.1549296 0.8857143 1.0995246
## [70] {DEST=LGA,
## ORIGIN=DCA,
## bin_fd=1} => {Flight.Status=0} 0.1431168 0.8848315 1.0984287
## [71] {DEST=LGA,
## Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.1694684 0.8838863 1.0972553
## [72] {Weather=0,
## bin_fd=1} => {Flight.Status=0} 0.2753294 0.8808140 1.0934413
## [73] {CARRIER=DL} => {Flight.Status=0} 0.1549296 0.8788660 1.0910231
## [74] {CARRIER=DL,
## ORIGIN=DCA} => {Flight.Status=0} 0.1549296 0.8788660 1.0910231
## [75] {DEST=LGA,
## ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.3807360 0.8774869 1.0893112
## [76] {DEST=LGA,
## ORIGIN=DCA} => {Flight.Status=0} 0.3807360 0.8683938 1.0780230
## [77] {DEST=LGA,
## bin_fd=1} => {Flight.Status=0} 0.1694684 0.8674419 1.0768412
## [78] {bin_fd=1} => {Flight.Status=0} 0.2753294 0.8669528 1.0762341
## [79] {DEST=LGA,
## Weather=0} => {Flight.Status=0} 0.4393458 0.8527337 1.0585825
## [80] {ORIGIN=DCA,
## Weather=0} => {Flight.Status=0} 0.5220354 0.8492239 1.0542256
## [81] {DAY_WEEK=4} => {Flight.Status=0} 0.1431168 0.8467742 1.0511844
## [82] {Weather=0,
## DAY_WEEK=4} => {Flight.Status=0} 0.1431168 0.8467742 1.0511844
## [83] {DEST=LGA} => {Flight.Status=0} 0.4393458 0.8408696 1.0438544
## [84] {ORIGIN=DCA} => {Flight.Status=0} 0.5220354 0.8386861 1.0411439
## [85] {Weather=0,
## DAY_WEEK=2} => {Flight.Status=0} 0.1108587 0.8356164 1.0373332
## [86] {DAY_WEEK=3} => {Flight.Status=0} 0.1194911 0.8218750 1.0202746
## [87] {Weather=0,
## DAY_WEEK=3} => {Flight.Status=0} 0.1194911 0.8218750 1.0202746
## [88] {DAY_WEEK=6} => {Weather=0} 0.1135847 1.0000000 1.0147533
## [89] {DAY_WEEK=3} => {Weather=0} 0.1453885 1.0000000 1.0147533
## [90] {DAY_WEEK=4} => {Weather=0} 0.1690141 1.0000000 1.0147533
## [91] {Flight.Status=0} => {Weather=0} 0.8055429 1.0000000 1.0147533
## [92] {Weather=0} => {Flight.Status=0} 0.8055429 0.8174274 1.0147533
## [93] {DAY_WEEK=6,
## Flight.Status=0} => {Weather=0} 0.1026806 1.0000000 1.0147533
## [94] {DAY_WEEK=2,
## Flight.Status=0} => {Weather=0} 0.1108587 1.0000000 1.0147533
## [95] {DAY_WEEK=1,
## Flight.Status=0} => {Weather=0} 0.1017719 1.0000000 1.0147533
## [96] {DAY_WEEK=3,
## Flight.Status=0} => {Weather=0} 0.1194911 1.0000000 1.0147533
## [97] {ORIGIN=DCA,
## DAY_WEEK=4} => {Weather=0} 0.1076783 1.0000000 1.0147533
## [98] {DAY_WEEK=4,
## Flight.Status=0} => {Weather=0} 0.1431168 1.0000000 1.0147533
## [99] {DEST=JFK,
## Flight.Status=0} => {Weather=0} 0.1372104 1.0000000 1.0147533
## [100] {CARRIER=DL,
## Flight.Status=0} => {Weather=0} 0.1549296 1.0000000 1.0147533
## [101] {DAY_WEEK=5,
## Flight.Status=0} => {Weather=0} 0.1435711 1.0000000 1.0147533
## [102] {CARRIER=US,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [103] {CARRIER=RU,
## Flight.Status=0} => {Weather=0} 0.1426624 1.0000000 1.0147533
## [104] {CARRIER=DH,
## Flight.Status=0} => {Weather=0} 0.1880963 1.0000000 1.0147533
## [105] {DEST=EWR,
## Flight.Status=0} => {Weather=0} 0.2289868 1.0000000 1.0147533
## [106] {ORIGIN=IAD,
## Flight.Status=0} => {Weather=0} 0.2344389 1.0000000 1.0147533
## [107] {Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.2753294 1.0000000 1.0147533
## [108] {DEST=LGA,
## Flight.Status=0} => {Weather=0} 0.4393458 1.0000000 1.0147533
## [109] {ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.5220354 1.0000000 1.0147533
## [110] {CARRIER=DL,
## DEST=LGA,
## Flight.Status=0} => {Weather=0} 0.1476602 1.0000000 1.0147533
## [111] {CARRIER=DL,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1549296 1.0000000 1.0147533
## [112] {CARRIER=US,
## DEST=LGA,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [113] {CARRIER=US,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [114] {CARRIER=RU,
## DEST=EWR,
## Flight.Status=0} => {Weather=0} 0.1426624 1.0000000 1.0147533
## [115] {CARRIER=DH,
## ORIGIN=IAD,
## Flight.Status=0} => {Weather=0} 0.1781009 1.0000000 1.0147533
## [116] {DEST=LGA,
## Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.1694684 1.0000000 1.0147533
## [117] {ORIGIN=DCA,
## Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.1858246 1.0000000 1.0147533
## [118] {DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.3807360 1.0000000 1.0147533
## [119] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1476602 1.0000000 1.0147533
## [120] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0} => {Weather=0} 0.1676511 1.0000000 1.0147533
## [121] {DEST=LGA,
## ORIGIN=DCA,
## Flight.Status=0,
## bin_fd=1} => {Weather=0} 0.1431168 1.0000000 1.0147533
## [122] {CARRIER=US} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [123] {CARRIER=US,
## DEST=LGA} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [124] {CARRIER=US,
## ORIGIN=DCA} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [125] {CARRIER=US,
## DEST=LGA,
## ORIGIN=DCA} => {Weather=0} 0.1830986 0.9975248 1.0122416
## [126] {DAY_WEEK=5} => {Weather=0} 0.1771922 0.9974425 1.0121581
## [127] {ORIGIN=DCA,
## DAY_WEEK=5} => {Weather=0} 0.1113130 0.9959350 1.0106283
## [128] {CARRIER=DL,
## DEST=LGA} => {Weather=0} 0.1612903 0.9943978 1.0090684
## [129] {CARRIER=DL,
## DEST=LGA,
## ORIGIN=DCA} => {Weather=0} 0.1612903 0.9943978 1.0090684
## [130] {CARRIER=RU} => {Weather=0} 0.1840073 0.9926471 1.0072919
## [131] {CARRIER=RU,
## DEST=EWR} => {Weather=0} 0.1840073 0.9926471 1.0072919
## [132] {CARRIER=DL} => {Weather=0} 0.1749205 0.9922680 1.0069073
## [133] {CARRIER=DL,
## ORIGIN=DCA} => {Weather=0} 0.1749205 0.9922680 1.0069073
## [134] {DAY_WEEK=7} => {Weather=0} 0.1140391 0.9920949 1.0067316
## [135] {Weather=0,
## DAY_WEEK=5} => {Flight.Status=0} 0.1435711 0.8102564 1.0058513
## [136] {DEST=LGA,
## ORIGIN=DCA} => {Weather=0} 0.4338937 0.9896373 1.0042378
## [137] {DAY_WEEK=5} => {Flight.Status=0} 0.1435711 0.8081841 1.0032788
## [138] {DEST=EWR,
## ORIGIN=DCA} => {Weather=0} 0.1149478 0.9882812 1.0028617
## [139] {DEST=EWR} => {Weather=0} 0.2985007 0.9879699 1.0025458
## [140] {ORIGIN=DCA} => {Weather=0} 0.6147206 0.9875912 1.0021615
## [141] {ORIGIN=DCA,
## bin_fd=1} => {Weather=0} 0.2053612 0.9868996 1.0014596
## [142] {DEST=EWR,
## ORIGIN=IAD} => {Weather=0} 0.1317583 0.9863946 1.0009472
## [143] {DEST=LGA} => {Weather=0} 0.5152204 0.9860870 1.0006350
## [144] {DEST=LGA,
## ORIGIN=DCA,
## bin_fd=1} => {Weather=0} 0.1594730 0.9859551 1.0005012
## [145] {} => {Flight.Status=0} 0.8055429 0.8055429 1.0000000
## [146] {} => {Weather=0} 0.9854612 0.9854612 1.0000000
## [147] {bin_fd=1} => {Weather=0} 0.3125852 0.9842632 0.9987844
## [148] {bin_fd=7} => {Weather=0} 0.1076783 0.9834025 0.9979110
## [149] {CARRIER=DH,
## DEST=JFK} => {Weather=0} 0.1044980 0.9829060 0.9974071
## [150] {DEST=LGA,
## bin_fd=1} => {Weather=0} 0.1917310 0.9813953 0.9958742
## [151] {CARRIER=DH} => {Weather=0} 0.2453430 0.9800363 0.9944951
## [152] {ORIGIN=IAD} => {Weather=0} 0.3053158 0.9795918 0.9940441
## [153] {DEST=JFK} => {Weather=0} 0.1717401 0.9792746 0.9937222
## [154] {CARRIER=DH,
## ORIGIN=IAD} => {Weather=0} 0.2330759 0.9790076 0.9934513
## [155] {bin_fd=4} => {Weather=0} 0.1044980 0.9745763 0.9889545
## [156] {CARRIER=MQ} => {Weather=0} 0.1294866 0.9661017 0.9803549
## [157] {CARRIER=MQ,
## ORIGIN=DCA} => {Weather=0} 0.1294866 0.9661017 0.9803549
## [158] {DAY_WEEK=1} => {Weather=0} 0.1335756 0.9545455 0.9686282
## [159] {DAY_WEEK=2} => {Weather=0} 0.1326670 0.9511401 0.9651726
## [160] {Flight.Status=1} => {Weather=0} 0.1799182 0.9252336 0.9388839
is.subset(rules.sorted,rules.sorted,sparse = F)->fdsubset
fdsubset
## {CARRIER=RU,DEST=EWR}
## {CARRIER=RU,DEST=EWR} TRUE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} TRUE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0}
## {CARRIER=RU,DEST=EWR} TRUE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} TRUE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,ORIGIN=IAD}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} TRUE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=MQ,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DAY_WEEK=6,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} TRUE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DAY_WEEK=4,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} TRUE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} TRUE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} TRUE
## {Weather=0,Flight.Status=1} FALSE
## {DAY_WEEK=3,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} TRUE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=6}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} TRUE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=3}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} TRUE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=4}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} TRUE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} TRUE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} TRUE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} TRUE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} TRUE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} TRUE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} TRUE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} TRUE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} TRUE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} TRUE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} TRUE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} TRUE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} TRUE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} TRUE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} TRUE
## {DEST=LGA,Flight.Status=0,bin_fd=1} TRUE
## {Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} TRUE
## {ORIGIN=DCA,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,Weather=0,Flight.Status=0} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} TRUE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,Weather=0} TRUE
## {CARRIER=US,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=5}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} TRUE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} TRUE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} TRUE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0}
## {CARRIER=RU,DEST=EWR} TRUE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} TRUE
## {CARRIER=RU,DEST=EWR,Weather=0} TRUE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} TRUE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} TRUE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=7}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} TRUE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,Flight.Status=0} TRUE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} TRUE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} TRUE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DAY_WEEK=5,Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} TRUE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} TRUE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=EWR,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} TRUE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} TRUE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} TRUE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} TRUE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Flight.Status=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} TRUE
## {Weather=0} FALSE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,bin_fd=7}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} TRUE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} TRUE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=LGA,Weather=0,bin_fd=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} TRUE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} TRUE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} TRUE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {ORIGIN=IAD,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {DEST=JFK,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} TRUE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} TRUE
## {ORIGIN=IAD,Weather=0} TRUE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} TRUE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,bin_fd=4}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} TRUE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=MQ,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} TRUE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} TRUE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} TRUE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} TRUE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} TRUE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} TRUE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,DAY_WEEK=2}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} TRUE
## {Weather=0,Flight.Status=1} FALSE
## {Weather=0,Flight.Status=1}
## {CARRIER=RU,DEST=EWR} FALSE
## {CARRIER=RU,DEST=EWR,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,bin_fd=1} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=DL,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0,bin_fd=1} FALSE
## {Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DAY_WEEK=4,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=LGA,Flight.Status=0} FALSE
## {ORIGIN=DCA,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6} FALSE
## {Weather=0,DAY_WEEK=3} FALSE
## {Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=6,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=2,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=1,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=3,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4} FALSE
## {Weather=0,DAY_WEEK=4,Flight.Status=0} FALSE
## {DEST=JFK,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,Weather=0,Flight.Status=0} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {CARRIER=US,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,Weather=0,Flight.Status=0} FALSE
## {DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1} FALSE
## {CARRIER=US,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,Weather=0} FALSE
## {CARRIER=US,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=5} FALSE
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5} FALSE
## {CARRIER=DL,DEST=LGA,Weather=0} FALSE
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {CARRIER=RU,Weather=0} FALSE
## {CARRIER=RU,DEST=EWR,Weather=0} FALSE
## {CARRIER=DL,Weather=0} FALSE
## {CARRIER=DL,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=7} FALSE
## {Weather=0,DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0} FALSE
## {DAY_WEEK=5,Flight.Status=0} FALSE
## {DEST=EWR,ORIGIN=DCA,Weather=0} FALSE
## {DEST=EWR,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0} FALSE
## {ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {DEST=EWR,ORIGIN=IAD,Weather=0} FALSE
## {DEST=LGA,Weather=0} FALSE
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1} FALSE
## {Flight.Status=0} FALSE
## {Weather=0} TRUE
## {Weather=0,bin_fd=1} FALSE
## {Weather=0,bin_fd=7} FALSE
## {CARRIER=DH,DEST=JFK,Weather=0} FALSE
## {DEST=LGA,Weather=0,bin_fd=1} FALSE
## {CARRIER=DH,Weather=0} FALSE
## {ORIGIN=IAD,Weather=0} FALSE
## {DEST=JFK,Weather=0} FALSE
## {CARRIER=DH,ORIGIN=IAD,Weather=0} FALSE
## {Weather=0,bin_fd=4} FALSE
## {CARRIER=MQ,Weather=0} FALSE
## {CARRIER=MQ,ORIGIN=DCA,Weather=0} FALSE
## {Weather=0,DAY_WEEK=1} FALSE
## {Weather=0,DAY_WEEK=2} FALSE
## {Weather=0,Flight.Status=1} TRUE
fdsubset[lower.tri(fdsubset,diag = T)]<-NA
fdredundant<-colSums(fdsubset,na.rm = T)>=1
which(fdredundant)
## {CARRIER=RU,DEST=EWR,Flight.Status=0}
## 2
## {CARRIER=RU,DEST=EWR,Weather=0}
## 3
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0}
## 4
## {CARRIER=DH,ORIGIN=IAD,Weather=0}
## 6
## {CARRIER=DH,ORIGIN=IAD,Flight.Status=0}
## 7
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0}
## 8
## {CARRIER=US,DEST=LGA,ORIGIN=DCA}
## 10
## {CARRIER=US,DEST=LGA,Flight.Status=0}
## 11
## {CARRIER=US,DEST=LGA,Weather=0}
## 12
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 13
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0}
## 14
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0}
## 15
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 16
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 18
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0}
## 19
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 20
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0}
## 22
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA}
## 24
## {CARRIER=MQ,ORIGIN=DCA,Weather=0}
## 28
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA}
## 29
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0}
## 30
## {CARRIER=DL,ORIGIN=DCA,Weather=0}
## 31
## {CARRIER=US,DEST=LGA,ORIGIN=DCA}
## 32
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0}
## 33
## {CARRIER=US,ORIGIN=DCA,Weather=0}
## 34
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 35
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0}
## 36
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 37
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 38
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0}
## 39
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 40
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 41
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 42
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 44
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1}
## 45
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## 46
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1}
## 49
## {DEST=LGA,ORIGIN=DCA,bin_fd=1}
## 50
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0}
## 52
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 53
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 54
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0}
## 55
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 56
## {CARRIER=US,DEST=LGA,Flight.Status=0}
## 58
## {CARRIER=US,ORIGIN=DCA,Flight.Status=0}
## 59
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 60
## {CARRIER=DL,DEST=LGA,Flight.Status=0}
## 61
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 62
## {Weather=0,DAY_WEEK=6,Flight.Status=0}
## 65
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## 66
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 69
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0,bin_fd=1}
## 70
## {CARRIER=DL,ORIGIN=DCA,Flight.Status=0}
## 74
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 75
## {DEST=LGA,ORIGIN=DCA,Flight.Status=0}
## 76
## {Weather=0,DAY_WEEK=4,Flight.Status=0}
## 82
## {Weather=0,DAY_WEEK=3,Flight.Status=0}
## 87
## {Weather=0,Flight.Status=0}
## 92
## {Weather=0,DAY_WEEK=6,Flight.Status=0}
## 93
## {Weather=0,DAY_WEEK=2,Flight.Status=0}
## 94
## {Weather=0,DAY_WEEK=1,Flight.Status=0}
## 95
## {Weather=0,DAY_WEEK=3,Flight.Status=0}
## 96
## {ORIGIN=DCA,Weather=0,DAY_WEEK=4}
## 97
## {Weather=0,DAY_WEEK=4,Flight.Status=0}
## 98
## {DEST=JFK,Weather=0,Flight.Status=0}
## 99
## {CARRIER=DL,Weather=0,Flight.Status=0}
## 100
## {Weather=0,DAY_WEEK=5,Flight.Status=0}
## 101
## {CARRIER=US,Weather=0,Flight.Status=0}
## 102
## {CARRIER=RU,Weather=0,Flight.Status=0}
## 103
## {CARRIER=DH,Weather=0,Flight.Status=0}
## 104
## {DEST=EWR,Weather=0,Flight.Status=0}
## 105
## {ORIGIN=IAD,Weather=0,Flight.Status=0}
## 106
## {Weather=0,Flight.Status=0,bin_fd=1}
## 107
## {DEST=LGA,Weather=0,Flight.Status=0}
## 108
## {ORIGIN=DCA,Weather=0,Flight.Status=0}
## 109
## {CARRIER=DL,DEST=LGA,Weather=0,Flight.Status=0}
## 110
## {CARRIER=DL,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 111
## {CARRIER=US,DEST=LGA,Weather=0,Flight.Status=0}
## 112
## {CARRIER=US,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 113
## {CARRIER=RU,DEST=EWR,Weather=0,Flight.Status=0}
## 114
## {CARRIER=DH,ORIGIN=IAD,Weather=0,Flight.Status=0}
## 115
## {DEST=LGA,Weather=0,Flight.Status=0,bin_fd=1}
## 116
## {ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## 117
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 118
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 119
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0}
## 120
## {DEST=LGA,ORIGIN=DCA,Weather=0,Flight.Status=0,bin_fd=1}
## 121
## {CARRIER=US,DEST=LGA,Weather=0}
## 123
## {CARRIER=US,ORIGIN=DCA,Weather=0}
## 124
## {CARRIER=US,DEST=LGA,ORIGIN=DCA,Weather=0}
## 125
## {ORIGIN=DCA,Weather=0,DAY_WEEK=5}
## 127
## {CARRIER=DL,DEST=LGA,Weather=0}
## 128
## {CARRIER=DL,DEST=LGA,ORIGIN=DCA,Weather=0}
## 129
## {CARRIER=RU,DEST=EWR,Weather=0}
## 131
## {CARRIER=DL,ORIGIN=DCA,Weather=0}
## 133
## {Weather=0,DAY_WEEK=5,Flight.Status=0}
## 135
## {DEST=LGA,ORIGIN=DCA,Weather=0}
## 136
## {ORIGIN=DCA,Weather=0,bin_fd=1}
## 141
## {DEST=EWR,ORIGIN=IAD,Weather=0}
## 142
## {DEST=LGA,ORIGIN=DCA,Weather=0,bin_fd=1}
## 144
## {Weather=0,bin_fd=1}
## 147
## {Weather=0,bin_fd=7}
## 148
## {CARRIER=DH,DEST=JFK,Weather=0}
## 149
## {DEST=LGA,Weather=0,bin_fd=1}
## 150
## {CARRIER=DH,Weather=0}
## 151
## {ORIGIN=IAD,Weather=0}
## 152
## {DEST=JFK,Weather=0}
## 153
## {CARRIER=DH,ORIGIN=IAD,Weather=0}
## 154
## {Weather=0,bin_fd=4}
## 155
## {CARRIER=MQ,Weather=0}
## 156
## {CARRIER=MQ,ORIGIN=DCA,Weather=0}
## 157
## {Weather=0,DAY_WEEK=1}
## 158
## {Weather=0,DAY_WEEK=2}
## 159
## {Weather=0,Flight.Status=1}
## 160
#removing redundant rules
rules.pruned <- rules.sorted[!fdredundant]
inspect(rules.pruned)
## lhs rhs support
## [1] {CARRIER=RU} => {DEST=EWR} 0.1853703
## [2] {CARRIER=DH} => {ORIGIN=IAD} 0.2380736
## [3] {CARRIER=US} => {DEST=LGA} 0.1835529
## [4] {CARRIER=DL,Flight.Status=0} => {DEST=LGA} 0.1476602
## [5] {CARRIER=DL,Weather=0} => {DEST=LGA} 0.1612903
## [6] {CARRIER=DL} => {DEST=LGA} 0.1621990
## [7] {CARRIER=MQ} => {ORIGIN=DCA} 0.1340300
## [8] {CARRIER=DL} => {ORIGIN=DCA} 0.1762835
## [9] {CARRIER=US} => {ORIGIN=DCA} 0.1835529
## [10] {DEST=LGA,Flight.Status=0} => {ORIGIN=DCA} 0.3807360
## [11] {DEST=LGA,Weather=0} => {ORIGIN=DCA} 0.4338937
## [12] {DEST=LGA} => {ORIGIN=DCA} 0.4384371
## [13] {CARRIER=US,Weather=0} => {Flight.Status=0} 0.1676511
## [14] {CARRIER=US} => {Flight.Status=0} 0.1676511
## [15] {ORIGIN=DCA,Weather=0,bin_fd=1} => {Flight.Status=0} 0.1858246
## [16] {DAY_WEEK=6} => {Flight.Status=0} 0.1026806
## [17] {ORIGIN=DCA,bin_fd=1} => {Flight.Status=0} 0.1858246
## [18] {CARRIER=DL,Weather=0} => {Flight.Status=0} 0.1549296
## [19] {DEST=LGA,Weather=0,bin_fd=1} => {Flight.Status=0} 0.1694684
## [20] {Weather=0,bin_fd=1} => {Flight.Status=0} 0.2753294
## [21] {CARRIER=DL} => {Flight.Status=0} 0.1549296
## [22] {DEST=LGA,bin_fd=1} => {Flight.Status=0} 0.1694684
## [23] {bin_fd=1} => {Flight.Status=0} 0.2753294
## [24] {DEST=LGA,Weather=0} => {Flight.Status=0} 0.4393458
## [25] {ORIGIN=DCA,Weather=0} => {Flight.Status=0} 0.5220354
## [26] {DAY_WEEK=4} => {Flight.Status=0} 0.1431168
## [27] {DEST=LGA} => {Flight.Status=0} 0.4393458
## [28] {ORIGIN=DCA} => {Flight.Status=0} 0.5220354
## [29] {Weather=0,DAY_WEEK=2} => {Flight.Status=0} 0.1108587
## [30] {DAY_WEEK=3} => {Flight.Status=0} 0.1194911
## [31] {DAY_WEEK=6} => {Weather=0} 0.1135847
## [32] {DAY_WEEK=3} => {Weather=0} 0.1453885
## [33] {DAY_WEEK=4} => {Weather=0} 0.1690141
## [34] {Flight.Status=0} => {Weather=0} 0.8055429
## [35] {CARRIER=US} => {Weather=0} 0.1830986
## [36] {DAY_WEEK=5} => {Weather=0} 0.1771922
## [37] {CARRIER=RU} => {Weather=0} 0.1840073
## [38] {CARRIER=DL} => {Weather=0} 0.1749205
## [39] {DAY_WEEK=7} => {Weather=0} 0.1140391
## [40] {DAY_WEEK=5} => {Flight.Status=0} 0.1435711
## [41] {DEST=EWR,ORIGIN=DCA} => {Weather=0} 0.1149478
## [42] {DEST=EWR} => {Weather=0} 0.2985007
## [43] {ORIGIN=DCA} => {Weather=0} 0.6147206
## [44] {DEST=LGA} => {Weather=0} 0.5152204
## [45] {} => {Flight.Status=0} 0.8055429
## [46] {} => {Weather=0} 0.9854612
## confidence lift
## [1] 1.0000000 3.309774
## [2] 0.9509982 3.051235
## [3] 1.0000000 1.913913
## [4] 0.9530792 1.824111
## [5] 0.9220779 1.764777
## [6] 0.9201031 1.760997
## [7] 1.0000000 1.606569
## [8] 1.0000000 1.606569
## [9] 1.0000000 1.606569
## [10] 0.8665977 1.392249
## [11] 0.8421517 1.352975
## [12] 0.8391304 1.348121
## [13] 0.9156328 1.136665
## [14] 0.9133663 1.133852
## [15] 0.9048673 1.123301
## [16] 0.9040000 1.122224
## [17] 0.8930131 1.108585
## [18] 0.8857143 1.099525
## [19] 0.8838863 1.097255
## [20] 0.8808140 1.093441
## [21] 0.8788660 1.091023
## [22] 0.8674419 1.076841
## [23] 0.8669528 1.076234
## [24] 0.8527337 1.058583
## [25] 0.8492239 1.054226
## [26] 0.8467742 1.051184
## [27] 0.8408696 1.043854
## [28] 0.8386861 1.041144
## [29] 0.8356164 1.037333
## [30] 0.8218750 1.020275
## [31] 1.0000000 1.014753
## [32] 1.0000000 1.014753
## [33] 1.0000000 1.014753
## [34] 1.0000000 1.014753
## [35] 0.9975248 1.012242
## [36] 0.9974425 1.012158
## [37] 0.9926471 1.007292
## [38] 0.9922680 1.006907
## [39] 0.9920949 1.006732
## [40] 0.8081841 1.003279
## [41] 0.9882812 1.002862
## [42] 0.9879699 1.002546
## [43] 0.9875912 1.002162
## [44] 0.9860870 1.000635
## [45] 0.8055429 1.000000
## [46] 0.9854612 1.000000
plot(rules.pruned)